From 66609011a1b44d589349b3d5f88dac52781fc518 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Thu, 5 Apr 2012 12:13:34 -0400 Subject: [PATCH] Follow Rails conventions for Gemfile quoting The newly generated Rails application will have single quoted lines in the Gemfile. We can match that style for consistency in the newly generated application. --- templates/Gemfile_additions | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/templates/Gemfile_additions b/templates/Gemfile_additions index 4dd43d2a2..321d9563e 100644 --- a/templates/Gemfile_additions +++ b/templates/Gemfile_additions @@ -9,25 +9,25 @@ gem 'copycopter_client' gem 'airbrake' group :development do - gem "heroku" + gem 'heroku' end group :development, :test do - gem "rspec-rails", "~> 2.9.0" - gem "ruby-debug19" - gem "sham_rack" + gem 'rspec-rails', '~> 2.9.0' + gem 'ruby-debug19' + gem 'sham_rack' end group :test do - gem "cucumber-rails", "1.3.0" - gem "capybara-webkit", "~> 0.11.0" - gem "factory_girl_rails" - gem "bourne" - gem "database_cleaner" - gem "timecop" - gem "shoulda-matchers" - gem "launchy" - gem "email_spec" + gem 'cucumber-rails', '1.3.0' + gem 'capybara-webkit', '~> 0.11.0' + gem 'factory_girl_rails' + gem 'bourne' + gem 'database_cleaner' + gem 'timecop' + gem 'shoulda-matchers' + gem 'launchy' + gem 'email_spec' end group :staging, :production do