sqlite-ulid 0.2.1

A SQLite extension for working with ULIDs
Documentation
1
2
3
4
5
6
7
8
9
10
11
require "version"

module SqliteUlid
  class Error < StandardError; end
  def self.ulid_loadable_path
    File.expand_path('../ulid0', __FILE__)
  end
  def self.load(db)
    db.load_extension(self.ulid_loadable_path)
  end
end