summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2018-10-03 11:48:21 +0000
committerBundlerbot <bot@bundler.io>2018-10-03 11:48:21 +0000
commite115a839123a21365904fd86980452d2b2b0283e (patch)
treef6d4139247e946893b12f8542d18edf3fff98a14
parent8c080ff6e7c3ce8fdd237f23eb499b197d56954d (diff)
parent10d7f56aa28d925ab8fae09260dc51753c84dcc4 (diff)
downloadbundler-e115a839123a21365904fd86980452d2b2b0283e.tar.gz
Merge #6721
6721: http:// URLs in the gemspec r=colby-swandale a=amatsuda ### What was the end-user problem that led to this PR? When the users visit https://rubygems.org/gems/bundler and click the links, or access the gem metadata from scripts e.g. gem-src, we're seeing unneeded redirection from http://... to https://... because both github.com and bundler.io redirects http requests to https. ### What is your fix for the problem, implemented in this PR? Rewrote all http:// URLs in the gemspec to https://. Co-authored-by: Akira Matsuda <ronnie@dio.jp>
-rw-r--r--bundler.gemspec6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundler.gemspec b/bundler.gemspec
index 49f09c85bf..d04bf34e7c 100644
--- a/bundler.gemspec
+++ b/bundler.gemspec
@@ -15,16 +15,16 @@ Gem::Specification.new do |s|
"Yehuda Katz"
]
s.email = ["team@bundler.io"]
- s.homepage = "http://bundler.io"
+ s.homepage = "https://bundler.io"
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",
+ "bug_tracker_uri" => "https://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/",
+ "source_code_uri" => "https://github.com/bundler/bundler/",
}
end