Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Cucumber with rails generate

I've tried to do:

rails generate cucumber:install —rspec —capybara

but I'm getting the following error:

Could not find generator cucumber:install.

I've included my Gemfile here http://pastebin.com/cDryD448 - bundle install and bundle update have both been run, as has gem update.

It's rails 3.1.0.

like image 848
cjm2671 Avatar asked Oct 26 '11 09:10

cjm2671


1 Answers

You are missing the gem 'cucumber-rails' line :)

like image 173
fuzzyalej Avatar answered Sep 22 '22 18:09

fuzzyalej