Skip to content

Instantly share code, notes, and snippets.

@gentlyawesome
Created October 28, 2014 04:56
Show Gist options
  • Save gentlyawesome/843fc6e216575b9ea781 to your computer and use it in GitHub Desktop.
Save gentlyawesome/843fc6e216575b9ea781 to your computer and use it in GitHub Desktop.
Sample Rails 3.2 list of gem for testing
source 'https://rubygems.org'
gem 'rails', '3.2.14'
gem 'mysql2'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
group :test, :development do
gem 'rspec-rails'
gem 'capybara'
gem 'guard-rspec'
gem 'rspec'
gem 'rb-inotify', '~> 0.8.8'
gem 'launchy'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment