Created
October 28, 2014 04:56
-
-
Save gentlyawesome/843fc6e216575b9ea781 to your computer and use it in GitHub Desktop.
Sample Rails 3.2 list of gem for testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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