Skip to content

Instantly share code, notes, and snippets.

@jimjeffers
Created February 26, 2012 04:28
Show Gist options
  • Save jimjeffers/1912992 to your computer and use it in GitHub Desktop.
Save jimjeffers/1912992 to your computer and use it in GitHub Desktop.
Testing Gems
group :development, :test do
gem 'rspec-rails' # Use rspec to do our integration tests.
gem 'factory_girl_rails' # Factory girls makes it easy to mock objects for our tests.
gem 'capybara' # Capybara lets us drive our integration tests via headless browser.
gem 'launchy' # Launchy let's us launch the current state of the app in the browser if we need to diagnose.
gem 'database_cleaner' # Necessary for undoing transactions in the database during our integration tests.
gem 'sqlite3'
gem 'evergreen', :require => 'evergreen/rails'
gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i
gem 'guard-rspec'
gem 'guard-livereload'
gem "spork", "> 0.9.0.rc"
gem "guard-spork"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment