Skip to content

Commit

Permalink
Follow Rails conventions for Gemfile quoting
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mjankowski committed Apr 5, 2012
1 parent b886d4f commit 6660901
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions templates/Gemfile_additions
Expand Up @@ -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
Expand Down

0 comments on commit 6660901

Please sign in to comment.