README.md in cucumber-rails-1.1.0 vs README.md in cucumber-rails-1.1.1
- old
+ new
@@ -2,16 +2,10 @@
[![Build Status](https://secure.travis-ci.org/cucumber/cucumber-rails.png)](http://travis-ci.org/cucumber/cucumber-rails)
Cucumber-Rails brings Cucumber to Rails 3.x. For Rails 2x support, see the [Cucumber Wiki](https://github.com/cucumber/cucumber/wiki/Ruby-on-Rails).
-Cucumber-Rails contains 2 generators - one
-for bootstrapping your Rails app for Cucumber, and a second one for generating features.
-
-Cucumber-Rails also contains Cucumber Step Definitions that wrap Capybara,
-giving you a head start for writing Cucumber features against your Rails app.
-
## Installation
Before you can use the generator, add the gem to your project's Gemfile as follows:
group :test do
@@ -29,21 +23,9 @@
rails generate cucumber:install --help
Finally, bootstrap your Rails app, for example:
rails generate cucumber:install
-
-## Generating a Cucumber feature
-
-IMPORTANT: Only do this if you are new to Cucumber. We recommend you write your
-Cucumber features by hand once you get the hang of it.
-
-Example:
-
- rails generate cucumber:feature post title:string body:text published:boolean
- rails generate scaffold post title:string body:text published:boolean
- rake db:migrate
- rake cucumber
## Running Cucumber
With Rake: