From a239b312be6e1140d207ef9b1ac06f6f909c36ba Mon Sep 17 00:00:00 2001 From: "Carlos A. da Silva" Date: Fri, 23 Oct 2009 11:21:47 -0200 Subject: [PATCH] Fix typo in README, updating TODO and CHANGELOG --- CHANGELOG.rdoc | 3 ++- README.rdoc | 4 ++-- TODO | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 98aabb3d..59f2d7ad 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,10 +1,11 @@ -== 0.1.2 (development) +== (development) * enhancements * [#4] Allow option :null => true in authenticable migration * [#3] Remove attr_accessible calls from devise modules * Customizable time frame for rememberable with :remember_for config * Customizable time frame for confirmable with :confirm_in config + * Generators for creating a resource and copy views * optimize * Do not load hooks or strategies if they are not used diff --git a/README.rdoc b/README.rdoc index 9f7aa2db..1fb8979d 100644 --- a/README.rdoc +++ b/README.rdoc @@ -44,9 +44,9 @@ And you're ready to go. == Basic Usage -Devise must be setted up within the model (or models) you want to use, and devise routes must be created inside your routes.rb file. +This is a walkthrough with all steps you need to setup a devise resource, including model, migration, route files, and optional configuration. You can also check out the *Generators* section below to help you start. -This is a walkthrough with all steps you need to setup a devise resource, including model, migration, route files, and optional configuration. You can also check out the *Generatos* section below to help you start. +Devise must be setted up within the model (or models) you want to use, and devise routes must be created inside your routes.rb file. We're assuming here you want a User model. First of all you have to setup a migration with the following fields: diff --git a/TODO b/TODO index 9ecb3f08..74794443 100644 --- a/TODO +++ b/TODO @@ -1,8 +1,8 @@ -* Create generators * Devise::Timeoutable * Devise::TestHelper * Use request_ip in session cookies * Devise::BruteForceProtection * Devise::MagicColumns +* Improve Generators to pass modules as arguments * Different cryptography providers * Devise::Invitable