Skip to content

Instantly share code, notes, and snippets.

@jameslafa
Created June 13, 2013 07:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jameslafa/5771771 to your computer and use it in GitHub Desktop.
Save jameslafa/5771771 to your computer and use it in GitHub Desktop.
A list of a few rails testing and debugging gems
group :development do
gem 'quiet_assets' # Remove useless logs
# Debugging in the browser
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'guard-livereload'
gem 'seed_dump'
end
group :test, :development do
gem 'rspec-rails' # launch test
gem 'factory_girl_rails' # create factories instead of fixtures
gem 'database_cleaner' # clean database for testing
end
group :test do
gem 'faker' # Create fake attributes inside our factories
gem 'capybara' # interact with DOM
gem 'launchy' # launch browser during test
gem 'guard-rspec' # automatic test launch
gem 'terminal-notifier-guard' # notify when tests pass or fail
gem 'syntax' # display highlighted syntax in html rspec test results
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment