summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2018-01-08 17:47:12 +0000
committerColby Swandale <me@colby.fyi>2018-04-20 10:26:13 +1000
commitb91b874122abb5123194aaa383e48ce0aedc7f6f (patch)
treef383d819a5b7a404855fdce3a9ed7d4fe7d865eb
parent88828a22740c746687aab8fb054427cf556f865d (diff)
downloadbundler-b91b874122abb5123194aaa383e48ce0aedc7f6f.tar.gz
Auto merge of #6241 - KrauseFx:patch-1, r=segiddins
Update unencrypted http links to https To avoid human-in-the-middle attacks (cherry picked from commit 20839c0bddbc331b9cb87f7caef21cd3776940d2)
-rw-r--r--lib/bundler/cli/gem.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/cli/gem.rb b/lib/bundler/cli/gem.rb
index 885578e819..ebfaf75b8c 100644
--- a/lib/bundler/cli/gem.rb
+++ b/lib/bundler/cli/gem.rb
@@ -105,7 +105,7 @@ module Bundler
if ask_and_set(:mit, "Do you want to license your code permissively under the MIT license?",
"This means that any other developer or company will be legally allowed to use your code " \
"for free as long as they admit you created it. You can read more about the MIT license " \
- "at http://choosealicense.com/licenses/mit.")
+ "at https://choosealicense.com/licenses/mit.")
config[:mit] = true
Bundler.ui.info "MIT License enabled in config"
templates.merge!("LICENSE.txt.tt" => "LICENSE.txt")
@@ -118,7 +118,7 @@ module Bundler
"of enforcing it, so be sure that you are prepared to do that. Be sure that your email " \
"address is specified as a contact in the generated code of conduct so that people know " \
"who to contact in case of a violation. For suggestions about " \
- "how to enforce codes of conduct, see http://bit.ly/coc-enforcement.")
+ "how to enforce codes of conduct, see https://bit.ly/coc-enforcement.")
config[:coc] = true
Bundler.ui.info "Code of conduct enabled in config"
templates.merge!("CODE_OF_CONDUCT.md.tt" => "CODE_OF_CONDUCT.md")