Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save evolve2k/422492 to your computer and use it in GitHub Desktop.
Save evolve2k/422492 to your computer and use it in GitHub Desktop.
How to get Cucumber working with Spree
#This is a work in progress..
1. Ensure you have the latest version of cucumber
> gem install cucumber
2. gem list cucumber
get the version number of the latest version of cucumber you have installed.
3. edit config/environment.rb by adding the following:
config.gem 'cucumber', :version => '0.7.3' # <== or whatever version you had installed
4. Install cucumber-rails gem
> gem install cucumber-rails
5. Then install all the other cucumber related gems
> gem install rspec rspec-rails cucumber webrat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment