Hello there
I'm running a rails 2.3.5 project and I can't run any rake tasks
My error is
no such file to load -- spec/rake/spectask
Here's a relevant snippet of gem list output
rails (2.3.5)
rake (0.8.7)
random_data (1.5.0)
RedCloth (4.2.2)
remarkable (3.1.13)
remarkable_activerecord (3.1.13)
I've found a solution.
I upgraded rspec-rails to 1.3.3 in my gemfile, which in turn downgraded
rspec from 2.0 to 1.3.1 in the gem list. This configuration now works
ok. God knows what was happening there.
--
Posted via http://www.ruby-forum.com/.
_
Hi David
I understand what you're saying, but the only thing I can think of(I'm
using bundler and there are no gems installed prior to running bundle
install) is that
gem 'rspec-rails', '1.2.9'
must depend on rspec >= 2.0
Otherwise I have no idea how rspec 2.0 was getting into the gem list
M