Created
February 26, 2012 04:28
-
-
Save jimjeffers/1912992 to your computer and use it in GitHub Desktop.
Testing Gems
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
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