summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2018-01-08 17:47:12 +0000
committerThe Bundler Bot <bot@bundler.io>2018-01-08 17:47:12 +0000
commit20839c0bddbc331b9cb87f7caef21cd3776940d2 (patch)
tree24d298155d496884cb88b4ac78cd4b52eb57025d
parent37e1a52b75a06389bd0b35cc9d5cd959bf0d2e65 (diff)
parent8d7b0576013cce309b83dcfb92875f82aabca861 (diff)
downloadbundler-20839c0bddbc331b9cb87f7caef21cd3776940d2.tar.gz
Auto merge of #6241 - KrauseFx:patch-1, r=segiddins
Update unencrypted http links to https To avoid human-in-the-middle attacks
-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")