summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMatthew Rudy Jacobs <MatthewRudyJacobs@gmail.com>2013-02-13 13:51:25 +0000
committerMatthew Rudy Jacobs <MatthewRudyJacobs@gmail.com>2013-02-13 14:01:37 +0000
commitfcadf1f9d2eaca9be6370dddeb78d4ca5b30bf40 (patch)
tree6cec56cf65b440f04b9819a350f48be8f4566af9 /man
parent37569d521c49b516fe77197ee75341b20f74ad29 (diff)
downloadbundler-fcadf1f9d2eaca9be6370dddeb78d4ca5b30bf40.tar.gz
use https://rubygems.org everywhere
if https is the best way to access rubygems.org then it should be default everywhere including in examples on the man page
Diffstat (limited to 'man')
-rw-r--r--man/bundle-install.ronn6
-rw-r--r--man/bundle-package.ronn2
-rw-r--r--man/bundle-platform.ronn2
-rw-r--r--man/bundle-update.ronn8
-rw-r--r--man/gemfile.5.ronn2
5 files changed, 10 insertions, 10 deletions
diff --git a/man/bundle-install.ronn b/man/bundle-install.ronn
index 29b3a90b4a..44f36a9805 100644
--- a/man/bundle-install.ronn
+++ b/man/bundle-install.ronn
@@ -192,7 +192,7 @@ third-party code being used in different environments.`
For a simple illustration, consider the following Gemfile(5):
- source "http://rubygems.org"
+ source "https://rubygems.org"
gem "sinatra"
@@ -288,7 +288,7 @@ same versions of all dependencies as it used before the update.
Let's take a look at an example. Here's your original Gemfile(5):
- source "http://rubygems.org"
+ source "https://rubygems.org"
gem "actionpack", "2.3.8"
gem "activemerchant"
@@ -304,7 +304,7 @@ gems in your Gemfile(5).
Next, you modify your Gemfile(5) to:
- source "http://rubygems.org"
+ source "https://rubygems.org"
gem "actionpack", "3.0.0.rc"
gem "activemerchant"
diff --git a/man/bundle-package.ronn b/man/bundle-package.ronn
index 834959bfd0..610f820487 100644
--- a/man/bundle-package.ronn
+++ b/man/bundle-package.ronn
@@ -26,7 +26,7 @@ in `vendor/cache`.
For instance, consider this Gemfile(5):
- source "http://rubygems.org"
+ source "https://rubygems.org"
gem "nokogiri"
diff --git a/man/bundle-platform.ronn b/man/bundle-platform.ronn
index 00b833d901..922a9f1a09 100644
--- a/man/bundle-platform.ronn
+++ b/man/bundle-platform.ronn
@@ -12,7 +12,7 @@ VM about your platform.
For instance, using this Gemfile(5):
- source "http://rubygems.org"
+ source "https://rubygems.org"
ruby "1.9.3"
diff --git a/man/bundle-update.ronn b/man/bundle-update.ronn
index 8c6165d7c8..56bf3a4ef8 100644
--- a/man/bundle-update.ronn
+++ b/man/bundle-update.ronn
@@ -30,7 +30,7 @@ based on the latest versions of all gems available in the sources.
Consider the following Gemfile(5):
- source "http://rubygems.org"
+ source "https://rubygems.org"
gem "rails", "3.0.0.rc"
gem "nokogiri"
@@ -38,7 +38,7 @@ Consider the following Gemfile(5):
When you run [bundle install(1)][bundle-install] the first time, bundler will resolve
all of the dependencies, all the way down, and install what you need:
- Fetching source index for http://rubygems.org/
+ Fetching source index for https://rubygems.org/
Installing rake (10.0.2)
Installing abstract (1.0.0)
Installing activesupport (3.0.0.rc)
@@ -103,7 +103,7 @@ Sometimes, multiple gems declared in your Gemfile(5) are satisfied by the same
second-level dependency. For instance, consider the case of `thin` and
`rack-perftools-profiler`.
- source "http://rubygems.org"
+ source "https://rubygems.org"
gem "thin"
gem "rack-perftools-profiler"
@@ -111,7 +111,7 @@ second-level dependency. For instance, consider the case of `thin` and
The `thin` gem depends on `rack >= 1.0`, while `rack-perftools-profiler` depends
on `rack ~> 1.0`. If you run bundle install, you get:
- Fetching source index for http://rubygems.org/
+ Fetching source index for https://rubygems.org/
Installing daemons (1.1.0)
Installing eventmachine (0.12.10) with native extensions
Installing open4 (1.0.1)
diff --git a/man/gemfile.5.ronn b/man/gemfile.5.ronn
index 70443165a4..53c1c341aa 100644
--- a/man/gemfile.5.ronn
+++ b/man/gemfile.5.ronn
@@ -20,7 +20,7 @@ a number of methods used to describe the gem requirements.
At the top of the `Gemfile`, add one line for each `Rubygems` source that
might contain the gems listed in the `Gemfile`.
- source "http://rubygems.org"
+ source "https://rubygems.org"
source "http://gems.github.com"
Each of these _source_s `MUST` be a valid Rubygems repository. Sources are