Missing these required gems:
rspec = 1.3.0
rspec-rails = 1.3.2
My environment.rb has entries for both of them like:
config.gem 'rspec', :version => '1.3.0'
config.gem 'rspec-rails', :version => '1.3.2'
After a lot of hair pulling I found we need to add another argument to that config.gem. The following fixed the problem:
config.gem 'rspec', :version => '1.3.0', :lib => false
config.gem 'rspec-rails', :version => '1.3.2', :lib => false
No comments:
Post a Comment