Created
July 10, 2013 22:31
-
-
Save BrainScraps/5970767 to your computer and use it in GitHub Desktop.
This is a Gemfile that is testing-ready. I plan on using it in the future!
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.13' | |
gem 'pg' | |
gem 'nokogiri', '~> 1.5.0' | |
group :development do | |
gem 'pry-rails' | |
gem 'pry-debugger' | |
gem 'binding_of_caller' | |
gem 'better_errors' | |
gem 'meta_request' | |
end | |
group :assets do | |
gem 'sass-rails', '~> 3.2.3' | |
gem 'coffee-rails', '~> 3.2.1' | |
gem 'haml-rails' | |
gem 'uglifier', '>= 1.0.3' | |
end | |
gem 'jquery-rails' | |
group :test, :development do | |
gem 'spork-rails' | |
gem 'guard-rspec' | |
gem 'dotenv-rails' | |
gem 'rspec-rails' | |
gem 'factory_girl_rails' | |
gem 'capybara' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment