Created
June 2, 2010 15:13
-
-
Save evolve2k/422492 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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