From 14aedc416a0ff77bcf176c0d7701ffc86ea1b972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Mon, 18 Apr 2011 10:03:36 +0200 Subject: [PATCH] Wording. --- README.rdoc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.rdoc b/README.rdoc index f7bea1b4..f147303e 100644 --- a/README.rdoc +++ b/README.rdoc @@ -86,12 +86,7 @@ The generator will install an initializer which describes ALL Devise's configura rails generate devise MODEL -Replace MODEL by the class name used for the applications users, -It's frequently 'User' but could also be 'Admin' (if say all authenticated users are 'Admins'), etc. -This will create a model (if one does not exist) and configure it with default Devise modules. -You'll usually then db:migrate as the generator will have created a migration file (if your ORM supports them), -The generator will also have configured your routes. -Continue reading this file to understand exactly what the generator produces and how to use it. +Replace MODEL by the class name used for the applications users, it's frequently 'User' but could also be 'Admin'. This will create a model (if one does not exist) and configure it with default Devise modules. Next, you'll usually run db:migrate as the generator will have created a migration file (if your ORM supports them). This generator also configures your config/routes.rb file, continue reading this file to understand exactly what the generator produces and how to use it. Support for Rails 2.3.x can be found by installing Devise 1.0.x from the v1.0 branch.