-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypeid.gemspec
23 lines (21 loc) · 910 Bytes
/
typeid.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative "./lib/typeid/version.rb"
Gem::Specification.new do |gem|
gem.name = "typeid"
gem.version = TypeID::VERSION
gem.summary = "A type-safe, K-sortable, globally unique identifier inspired by Stripe IDs"
gem.authors = ["Andrew Booth"]
gem.homepage = "https://github.com/broothie/typeid-ruby"
gem.license = "Apache-2.0"
gem.metadata = {
"source_code_uri" => "https://github.com/broothie/typeid-ruby",
"github_repo" => "https://github.com/broothie/typeid-ruby",
}
gem.required_ruby_version = ">= 3.0.0"
gem.files = Dir.glob("lib/**/*.rb")
gem.add_runtime_dependency "uuid7", "~> 0.2.0"
gem.add_development_dependency "pry", "~> 0.14.2"
gem.add_development_dependency "rake", "~> 13.0"
gem.add_development_dependency "rspec", "~> 3.12"
gem.add_development_dependency "simplecov", "~> 0.22.0"
gem.add_development_dependency "simplecov-cobertura", "~> 2.1"
end