Skip to content

Commit

Permalink
Merge pull request #402 from orien/gem-metadata
Browse files Browse the repository at this point in the history
Add project metadata to the gemspec
  • Loading branch information
jdleesmiller committed Sep 13, 2019
2 parents 0d85cb6 + 72e7ca0 commit 09bb946
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions rubyzip.gemspec
Expand Up @@ -16,6 +16,13 @@ Gem::Specification.new do |s|
s.test_files = Dir.glob('test/**/*')
s.require_paths = ['lib']
s.license = 'BSD 2-Clause'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/rubyzip/rubyzip/issues',
'changelog_uri' => "https://github.com/rubyzip/rubyzip/blob/v#{s.version}/Changelog.md",
'documentation_uri' => "https://www.rubydoc.info/gems/rubyzip/#{s.version}",
'source_code_uri' => "https://github.com/rubyzip/rubyzip/tree/v#{s.version}",
'wiki_uri' => 'https://github.com/rubyzip/rubyzip/wiki'
}
s.required_ruby_version = '>= 1.9.2'
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'pry', '~> 0.10'
Expand Down

0 comments on commit 09bb946

Please sign in to comment.