Rails 3 + Rspec 2 + Autotest: does the Rspec2 autotest style not seem to exist?

I updated my ruby ​​pearl and suddenly Autotest stopped working.

After many attempts to fix without any debugging information, I know the following:

$ autotest
loading autotest/rails_rspec2
You don't have i18n installed in your application. Please add it to your Gemfile and run bundle install
Autotest style autotest/rails_rspec2 doesn't seem to exist. Aborting

Any solution for this?

+3
source share
2 answers

I had the same problem. In my case, it bundle updatesolves the problem. (with rspec 2.6.0, rspec-rails 2.6.1 and rspec-core 2.6.3 now)

0
source

I changed my Gemfile to rspec-rails 2.7.0, rspec-core 2.7.1 and installed the package, which solved the problem for me.

Running rails 3.1.1. Also spork 0.9.0.rc9, if that interests you.

0
source

All Articles