summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2018-10-03 11:48:21 +0000
committerColby Swandale <me@colby.fyi>2019-03-24 01:59:04 +1100
commit01b898cd41e9a2f3eca924c2321611f8ce8c9770 (patch)
tree98ae306b36715d02e6b9d08b0a6b53b79dddcf6d
parent42192fa8b5c252803589bfeb57b6de36fc372306 (diff)
downloadbundler-01b898cd41e9a2f3eca924c2321611f8ce8c9770.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> (cherry picked from commit e115a839123a21365904fd86980452d2b2b0283e)
-rw-r--r--bundler.gemspec6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundler.gemspec b/bundler.gemspec
index 0ce9fe7125..7b31506536 100644
--- a/bundler.gemspec
+++ b/bundler.gemspec
@@ -19,16 +19,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