diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile index a41ce2f4842c4..8e851a64e7adc 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile @@ -1,20 +1,17 @@ -# Gemfile is where you list all of your application's dependencies -# +# Edit this Gemfile to bundle your application's dependencies. + gem "rails", "<%= Rails::VERSION::STRING %>" -# -# Bundling edge rails: -# gem "rails", "<%= Rails::VERSION::STRING %>", :git => "git://github.com/rails/rails.git" -# Specify gemcutter as a gem source -# source "http://gemcutter.org" +## Bundle edge rails: +# gem "rails", :git => "git://github.com/rails/rails.git" -# Specify gems that this application depends on and have them installed with rake gems:install +## Bundle the gems you use: # gem "bj" # gem "hpricot", "0.6" # gem "sqlite3-ruby", :require_as => "sqlite3" # gem "aws-s3", :require_as => "aws/s3" -# Specify gems that should only be required in certain environments +## Bundle gems used only in certain environments: # gem "rspec", :only => :test # only :test do # gem "webrat"