Skip to content

Instantly share code, notes, and snippets.

@jasdeepsingh
Created December 18, 2011 17:38
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasdeepsingh/1494008 to your computer and use it in GitHub Desktop.
Save jasdeepsingh/1494008 to your computer and use it in GitHub Desktop.
Setting up Rails TDD Environment with Rspec
# In console:
# Ignores the setting up of Test::Unit by default
$ rails new app_name -T
# In Gemfile add the following gems:
group :test, :development do
gem 'turn'
gem 'rspec-rails'
gem 'capybara'
gem 'guard-rspec'
gem 'growl_notify'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment