Created
September 25, 2011 18:36
-
-
Save FlaviuSim/1240943 to your computer and use it in GitHub Desktop.
testing part of the gem file
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 :test, :development do | |
gem 'sqlite3' | |
gem 'rspec-rails', '~> 2.6.1' | |
#capybara > webrat: http://zadasnotes.blogspot.com/2011/08/migrating-from-webrat-to-capybara.html?utm_source=rubyweekly&utm_medium=email | |
gem "capybara", "~> 1.0.0" | |
#headless js testing that hopefully is faster than selenium | |
gem "capybara-webkit", "~> 0.6.1" | |
#supposedly you need this for Mac OS X file system scanning, though it's worked fine so far | |
gem "rb-fsevent", "~> 0.4.3.1" | |
# gem 'guard-rspec' | |
#uses applescript magic, better than the growl gem | |
gem "growl" | |
# ryanb told me to use this | |
gem 'launchy' | |
# clean the database between rspecs | |
gem 'database_cleaner' | |
#rails tutorial used spork, autotest, and autotest growl, but rbates does not | |
#hell, let's bring spork back, maybe it's faster | |
gem 'spork', '~> 0.9.0.rc8' | |
# and spork for guard too, to make sure I don't need to keep two tabs open | |
# gem "guard-spork", "~> 0.2.1" | |
gem 'autotest-rails' | |
gem 'autotest-growl', '~> 0.2.9' | |
gem 'annotate', '~>2.4.0' | |
gem 'factory_girl_rails', '~> 1.1' | |
# Pretty printed test output | |
gem 'turn', :require => false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment