README.md in clearance-1.0.0.rc2 vs README.md in clearance-1.0.0.rc3
- old
+ new
@@ -2,13 +2,13 @@
=========
[![Build Status](https://secure.travis-ci.org/thoughtbot/clearance.png)](http://travis-ci.org/thoughtbot/clearance?branch=master)
[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/thoughtbot/clearance)
-Rails authentication & authorization with email & password.
+Rails authentication with email & password.
-Clearance was extracted out of [Airbrake](http://airbrakeapp.com/).
+Clearance was extracted out of [Airbrake](http://airbrake.io/).
It is intended to be small, simple, well-tested, and easy to override defaults.
Use [Github Issues](/thoughtbot/clearance/issues) for help.
Read [CONTRIBUTING.md](/thoughtbot/clearance/blob/master/CONTRIBUTING.md) to contribute.
@@ -278,27 +278,27 @@
Clearance.configure do |config|
config.password_strategy = CustomPasswordStrategy
end
-Optional Cucumber features
+Optional Integration tests
--------------------------
-Clearance's Cucumber features are dependent on:
+Clearance's integration tests are dependent on:
-* Cucumber
* Capybara
* RSpec
* Factory Girl
-As your app evolves, you want to know that authentication still works. If you've
-installed [Cucumber](http://cukes.info) into your app:
+As your app evolves, you want to know that authentication still works. We include support for RSpec integration tests.
- rails generate cucumber:install
+If you've installed [RSpec](https://github.com/rspec/rspec) in your app:
-Then, you can use the Clearance features generator:
+ rails generate rspec:install
- rails generate clearance:features
+Then, you can use the Clearance specs generator:
+
+ rails generate clearance:specs
Edit your Gemfile to include:
gem 'factory_girl_rails'