-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalimero.gemspec
More file actions
38 lines (32 loc) · 1.56 KB
/
calimero.gemspec
File metadata and controls
38 lines (32 loc) · 1.56 KB
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
30
31
32
33
34
35
36
37
Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = "calimero"
gem.homepage = "https://github.com/dryruby/calimero.rb"
gem.license = "Unlicense"
gem.summary = "Calimero.rb: Calimero Network for Ruby"
gem.description = "A Ruby client library for the Calimero Network."
gem.metadata = {
'bug_tracker_uri' => "https://github.com/dryruby/calimero.rb/issues",
'changelog_uri' => "https://github.com/dryruby/calimero.rb/blob/master/CHANGES.md",
'documentation_uri' => "https://rubydoc.info/gems/calimero",
'homepage_uri' => gem.homepage,
'source_code_uri' => "https://github.com/dryruby/calimero.rb",
}
gem.author = "Kirill Abramov"
gem.email = "septengineering@pm.me"
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 = '>= 3.0'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'yard' , '~> 0.9'
gem.add_development_dependency 'tempfile', '~> 0.3.0'
gem.add_dependency 'net-http', '~> 0.4.1'
gem.add_dependency 'uri', '~> 0.10.0'
gem.add_dependency 'json', '~> 2.10'
gem.add_dependency 'toml-rb', '~> 3.0.1'
gem.add_dependency 'ed25519', '~> 1.3.0'
gem.add_dependency 'base58', '~> 0.2.3'
end