Merge pull request #8341 from amatsuda/bundle_source_rubygems

default source in Gemfiles to :rubygems rather than hardcoding the URL
This commit is contained in:
Rafael Mendonça França 2012-11-27 08:35:26 -08:00
commit 33b29e0112
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
source 'https://rubygems.org'
source :rubygems
gemspec

View File

@ -1,4 +1,4 @@
source 'https://rubygems.org'
source :rubygems
gem 'rails', '3.2.3'

View File

@ -1,4 +1,4 @@
source 'https://rubygems.org'
source :rubygems
<%= rails_gemfile_entry -%>

View File

@ -1,4 +1,4 @@
source "http://rubygems.org"
source :rubygems
<% if options[:skip_gemspec] -%>
<%= '# ' if options.dev? || options.edge? -%>gem "rails", "~> <%= Rails::VERSION::STRING %>"