Created
June 13, 2013 07:11
-
-
Save jameslafa/5771771 to your computer and use it in GitHub Desktop.
A list of a few rails testing and debugging gems
This file contains 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
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