-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathborsh.gemspec
29 lines (25 loc) · 1.3 KB
/
borsh.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = "borsh"
gem.homepage = "https://github.com/dryruby/borsh.rb"
gem.license = "Unlicense"
gem.summary = "Borsh for Ruby"
gem.description = "A Ruby library for encoding and decoding data in the Borsh binary serialization format designed for security-critical projects."
gem.metadata = {
'bug_tracker_uri' => "https://github.com/dryruby/borsh.rb/issues",
'changelog_uri' => "https://github.com/dryruby/borsh.rb/blob/master/CHANGES.md",
'documentation_uri' => "https://rubydoc.info/gems/borsh",
'homepage_uri' => gem.homepage,
'source_code_uri' => "https://github.com/dryruby/borsh.rb",
}
gem.author = "Arto Bendiken"
gem.email = "[email protected]"
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS CHANGES.md README.md UNLICENSE VERSION) + Dir.glob('lib/**/*.rb')
gem.bindir = %q(bin)
gem.executables = %w()
gem.required_ruby_version = '>= 2.6' # macOS 12+
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'yard' , '~> 0.9'
end