vote up 2 vote down star

I'm trying to install RSpec as a gem after having it installed as a plugin. I've gone ahead and followed the directions found here http://github.com/dchelimsky/rspec-rails/wikis for the section titled rspec and rspec-rails gems. When I run ruby script/generate rspec, I get the error Couldn't find 'rspec' generator. Do only the plugins work? If so, why do they even offer the gems for rspec and rspec-rails? I'm running a frozen copy of Rails 2.1.2, and the version of rpsec and rspec-rails I'm using is the newest for today (Nov 7, 2008) 1.1.11.

EDIT Nov 12, 2008 I have both the rspec and rspec-rails gems installed. I've unpacked the gems into the vender/gems folder. Both are version 1.1.11.

flag
More detail on your setup and what you did, please. – James Baker Nov 7 '08 at 18:19

4 Answers

vote up 0 vote down

Is there supposed to be an 'rspec' generator? I've only used the following:

script/generate rspec_model mymodel
script/generate rspec_controller mycontroller
link|flag
I'm using script/generate rspec because that's the next step it says in the directions on the site. I am unable to run this script, or any of my rspec tests with this new version. – mikeweber Nov 12 '08 at 19:11
Yes, the rspec generator sets up some boiler plate stuff like spec_helper.rb. – Otto Jan 1 at 16:47
vote up 2 vote down

Have you installed both rspec and rspec-rails gems?

script/generate rspec

requires rspec-rails gem to be installed.

link|flag
That fixed it for me. Thanks! – Hates_ Feb 15 at 13:26
vote up 1 vote down

I've had this problem before, it boiled down to the version of RSpec I had not working with the version of Rails I was using. IIRC it was a 2.1 Rails and the updated RSpec hadn't been released as a gem. In fact, 1.1.11 is the gem I have, which would be the latest available (ignoring github gems), so I'm pretty sure that's exactly what my problem was.

I've taken to just using the head of master rspec with whatever version of Rails I happen to be on, it seems stable to me (and isn't going to break things in production, unless somehow a test broke with a false positive).

I do it with git using submodules, for example:

git submodule add git://github.com/dchelimsky/rspec.git vendor/plugins/rspec
git submodule add git://github.com/dchelimsky/rspec-rails.git vendor/plugins/rspec_on_rails
link|flag
vote up 0 vote down

On Fedora 9 (OLPC) I did:

$ sudo gem install rspec

$ sudo gem install rspec-rails

Those got me to where I could run

$ ruby script/generate rspec

This worked for me, whereas the git instructions did not work.

HTH, Cosmo

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.