diff options
author | David Radcliffe <radcliffe.david@gmail.com> | 2017-04-17 07:55:02 -0400 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2017-04-24 10:06:27 +0200 |
commit | 38a3c92f5d6547e36a628ba9c055c2ec06fdb0ea (patch) | |
tree | 221bca4cfbff91cdfa5069a0de0c6c76079a9d1f /bundler.gemspec | |
parent | 29a0e80c9f9fa745c0adaf4de6366b4f582e8a51 (diff) | |
download | bundler-38a3c92f5d6547e36a628ba9c055c2ec06fdb0ea.tar.gz |
add metadata to gemspecdwr-metadata
Including new changelog link
Diffstat (limited to 'bundler.gemspec')
-rw-r--r-- | bundler.gemspec | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bundler.gemspec b/bundler.gemspec index ef848e9e8d..38d739b0ba 100644 --- a/bundler.gemspec +++ b/bundler.gemspec @@ -18,6 +18,15 @@ Gem::Specification.new do |s| s.summary = "The best way to manage your application's dependencies" s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably" + if s.respond_to?(:metadata=) + s.metadata = { + "bug_tracker_uri" => "http://github.com/bundler/bundler/issues", + "changelog_uri" => "https://github.com/bundler/bundler/blob/master/CHANGELOG.md", + "homepage_uri" => "https://bundler.io/", + "source_code_uri" => "http://github.com/bundler/bundler/", + } + end + s.required_ruby_version = ">= 1.8.7" s.required_rubygems_version = ">= 1.3.6" |