Skip to content

Commit

Permalink
Avoid deprecation warning in Bundler v1.2.4.
Browse files Browse the repository at this point in the history
I was seeing the following warning message:

    The source :rubygems is deprecated because HTTP requests are
    insecure. Please change your source to 'https://rubygems.org'
    if possible, or 'http://rubygems.org' if not.
  • Loading branch information
floehopper committed Feb 18, 2013
1 parent 6cca59f commit 83e80c4
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source :rubygems
source 'https://rubygems.org'

gemspec
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.1.3.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.1.4.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.1.4.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.1.4.2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.2.0.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.2.0.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.2.11.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.2.11.2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.2.3.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.minitest.latest
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.test-unit.2.0.0
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.test-unit.2.0.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.test-unit.2.0.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.test-unit.latest
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source :rubygems
source 'https://rubygems.org'

gemspec :path=>"../"

Expand Down

0 comments on commit 83e80c4

Please sign in to comment.