summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2017-04-24 20:26:19 +0000
committerSamuel Giddins <segiddins@segiddins.me>2017-04-30 18:34:43 -0500
commitdc1add482700228a69589699dc539185259e41dd (patch)
tree0b80e6c8b87fdf30ef9508977d63a75604a444e0
parent1f90a25022bb68d8217618e82343e9316fa19265 (diff)
downloadbundler-dc1add482700228a69589699dc539185259e41dd.tar.gz
Auto merge of #5591 - bundler:dwr-metadata, r=segiddins
add metadata to gemspec Including new changelog link! (cherry picked from commit 2656fd7c54a81271f0ced674cf78905529728aa9)
-rw-r--r--bundler.gemspec9
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"