-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitstamp.gemspec
40 lines (35 loc) · 1.7 KB
/
gitstamp.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
30
31
32
33
34
35
36
37
38
39
40
Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = 'gitstamp'
gem.homepage = 'https://gitstamp.dev'
gem.license = 'Unlicense'
gem.summary = 'Gitstamp Command-Line Interface (CLI)'
gem.description = gem.summary
gem.author = 'Arto Bendiken'
gem.email = 'arto@bendiken.net'
gem.metadata = {
'bug_tracker_uri' => 'https://github.com/weavery/gitstamp-cli/issues',
'changelog_uri' => 'https://github.com/weavery/gitstamp-cli/blob/master/CHANGES.md',
'documentation_uri' => 'https://www.rubydoc.info/github/weavery/gitstamp-cli/master',
'homepage_uri' => 'https://gitstamp.dev',
'source_code_uri' => 'https://github.com/weavery/gitstamp-cli',
}
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS CHANGES.md CREDITS.md README.md UNLICENSE VERSION) + Dir.glob('lib/**/*.rb')
gem.bindir = %q(bin)
gem.executables = %w(gitstamp)
gem.require_paths = %w(lib)
gem.extensions = %w()
gem.test_files = %w()
gem.required_ruby_version = '>= 2.4.0'
gem.required_rubygems_version = '>= 2.6.8' # Ruby 2.4.0
gem.requirements = []
gem.add_development_dependency 'rake', '>= 13'
gem.add_development_dependency 'rspec', '>= 3.9'
gem.add_development_dependency 'yard' , '>= 0.9'
gem.add_runtime_dependency 'arweave', '~> 1.1'
gem.add_runtime_dependency 'rugged', '~> 1.0'
gem.add_runtime_dependency 'thor', '~> 1.0'
gem.post_install_message = nil
end