Skip to content

Commit 4a6b63d

Browse files
committedMay 10, 2013
Resolved bundler deprecation warning about rubygems source.
1 parent bbf755e commit 4a6b63d

6 files changed

+6
-6
lines changed
 

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Gemfile.lock
1+
Gemfile*.lock
22
tmp/
33
*.gem

‎test/gemfiles/Gemfile.rails-3.0.x

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source :rubygems
1+
source 'https://rubygems.org'
22
gemspec :path => "./../.."
33

44
gem "actionpack", "~> 3.0.0"

‎test/gemfiles/Gemfile.rails-3.1.x

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source :rubygems
1+
source 'https://rubygems.org'
22
gemspec :path => "./../.."
33

44
# Patch 3-1-stable to allow new sprockets

‎test/gemfiles/Gemfile.rails-3.2.x

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source :rubygems
1+
source 'https://rubygems.org'
22
gemspec :path => "./../.."
33

44
gem "actionpack", "~> 3.2.0"

‎test/gemfiles/Gemfile.rails-4.0.x

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source :rubygems
1+
source 'https://rubygems.org'
22
gemspec :path => "./../.."
33

44
# gem "actionpack", "~> 4.0.0"

‎test/gemfiles/Gemfile.rails-edge

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source :rubygems
1+
source 'https://rubygems.org'
22
gemspec :path => "./../.."
33

44
gem 'actionpack', :github => 'rails/rails'

0 commit comments

Comments
 (0)
Please sign in to comment.