-
Notifications
You must be signed in to change notification settings - Fork 0
/
foobar.gemspec
38 lines (33 loc) · 1.57 KB
/
foobar.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
Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = 'foobar'
gem.homepage = 'https://github.com/dryruby/foobar.rb'
gem.license = 'Unlicense'
gem.summary = 'TODO' # TODO
gem.description = gem.summary
gem.author = 'Arto Bendiken'
gem.email = '[email protected]'
gem.metadata = {
'bug_tracker_uri' => 'https://github.com/dryruby/foobar.rb/issues',
'changelog_uri' => 'https://github.com/dryruby/foobar.rb/blob/master/CHANGES.md',
'documentation_uri' => 'https://www.rubydoc.info/github/dryruby/foobar.rb/master',
'homepage_uri' => gem.homepage,
#'mailing_list_uri' => 'https://groups.google.com/forum/#!forum/foobar',
'source_code_uri' => 'https://github.com/dryruby/foobar.rb',
}
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()
gem.require_paths = %w(lib)
gem.extensions = %w()
gem.test_files = %w()
gem.required_ruby_version = '>= 2.7.0'
gem.required_rubygems_version = '>= 3.1.2' # Ruby 2.7.0
gem.requirements = []
gem.add_development_dependency 'rake', '>= 13'
gem.add_development_dependency 'rspec', '>= 3.9'
gem.add_development_dependency 'yard' , '>= 0.9'
gem.post_install_message = nil
end