README.md in clearance-0.10.3.2 vs README.md in clearance-0.10.4
- old
+ new
@@ -71,17 +71,21 @@
See config/routes.rb for all the routes Clearance provides.
Actions that redirect (create, update, and destroy) in Clearance controllers
can be overridden by re-defining url_after_(action) methods as seen above.
+Clearance is an engine, so it provides views for you. If you want to customize those views, there is a handy shortcut to copy the views into your app:
+
+ rails generate clearance:views
+
Optional Cucumber features
--------------------------
As your app evolves, you want to know that authentication still works. If you
use [Cucumber](http://cukes.info), run the Clearance features generator:
- rails generate clearance_features
+ rails generate clearance:features
Edit your Gemfile to include:
gem 'factory_girl_rails'
@@ -90,16 +94,9 @@
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
Then run your tests!
rake
-
-Optional Formtastic views
--------------------------
-
-Clearance can also generate [Formtastic](http://github.com/justinfrench/formtastic) views:
-
- rails generate clearance_views
Extensions
----------
Clearance is intended to be small, simple, well-tested, and easy to extend.