I'm trying to get autotest back up and running after moving my project to rails 3. After upgrading to rspec 2.0.0.beta.22, I can't seem to run autotest. I get the following:
bundler: command not found: c:/Ruby192/lib/ruby/gems/1.9.1/gems/rspec-core-2.0.0.beta.22/bin/rspec
even though the binary does in fact exist in that location.
Here is my Gemfile contents:
group :development do
gem 'webrat'
gem 'rspec-rails', '>=2.0.0.beta.22'
gem 'factory_girl_rails', '1.0'
gem 'autotest'
end
group :test do
gem 'webrat'
gem 'rspec-rails', '>=2.0.0.beta.22'
gem 'factory_girl_rails', '1.0'
gem 'autotest'
end
and I have the following gems installed (among others):
- autotest (4.3.2)
- autotest-growl (0.2.5)
- rspec (2.0.0.beta22)
- rspec-core (2.0.0.beta22)
- rspec-expectations (2.0.0.beta22)
- rspec-mocks (2.0.0.beta22)
- rspec-rails (2.0.0.beta22)
- ZenTest (4.4.0)
Any idea what could be going on here?