3

I have created an app in merb. My Gemfile has

gem "rspec", :require => "spec"

If I run the rake -T or rake routes, my rake task is aborted with the above error.

If the gem is not mentioned in the Gemfile then the error is

rake aborted!
no such file to load -- spec/rake/spectask

Please suggest a solution.

Darshan Rivka Whittle
  • 32,989
  • 7
  • 91
  • 109
Prasad Surase
  • 6,486
  • 6
  • 39
  • 58

1 Answers1

0

solved the problem by specifying the gem version for rspec as gem "rspec", "1.2.11",:require => "spec" :) . the merb version is 1.1.3 – Prasad Surase Jul 29 '11 at 9:22

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880