I am trying to run rspec in my rails app using the spec command- but I get the following error:
`require': cannot load such file -- spec/rails/example/helper_example_group_helper (LoadError)
I have had to deal already with missing 'helper' files, but it seems this one is not even in my app but in rails itself..
If I go ahead and create a helper_example_group_helper.rb file, then the error will appear regarding some other missing helper file inside Rails, ad infinitum.
The full log trace: http://pastie.org/pastes/3295692/text
The full gem list: http://pastie.org/pastes/3296070/text
I am running:
Ruby 1.9.3-p0
Rails 2.3.14
rspec 1.2.9 (gem)
rspec-rails 1.2.9 (gem)
Any help would be greatly appreciated!
Thanks