Installing Guard gem causes tests to fail - Solved

1 minute read Aug 18, 2011 Comments
I was tinkering with a new rails application, using RSpec2 and Cucumber for my testing. I was able to run all my tests by typing: rake spec rake cucumber This worked perfectly, but every time I’d make a change, I’d have to run both commands. So I looked into the Guard gem, after watching the excellent RailsCast by Ryan Bates. I started by adding to my gemfile: gem 'guard-spork' gem 'guard-rspec' gem 'guard-cucumber' Then to configure guard, I ran: