diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 0997df6f..36a27e9b 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,4 +1,4 @@ -== 0.1.2 +== 0.1.2 (development) * bug fixes * Fixed requiring devise strategies @@ -6,6 +6,10 @@ * optimize * Do not load hooks or strategies if they are not used +* enhancements + * Customizable time frame for rememberable with :remember_for config + * Customizable time frame for confirmable with :confirm_in config + == 0.1.1 * bug fixes diff --git a/README.rdoc b/README.rdoc index fa501f36..ac9a1147 100644 --- a/README.rdoc +++ b/README.rdoc @@ -68,7 +68,7 @@ Now let's setup a User model adding the devise line to have your authentication devise end -This line adds devise authenticable automatically for you inside your User class. It uses @attr_accessible@, so be sure to use attr_accessible in your next attributes as well. +This line adds devise authenticable automatically for you inside your User class. Devise don't rely on _attr_accessible_ or _attr_protected_ inside it's modules, so be sure to setup what attributes are accessible or protected in your model. You could also include the other devise modules as below: diff --git a/TODO b/TODO index 16daf0b7..8c131a4b 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,3 @@ -* Add customizable time frame for remember me -* Add customizable time frame for confirmation and filters - * Create generators * Use request_ip in session cookies * Session timeout @@ -8,5 +5,3 @@ * Devise::BruteForceProtection * Devise::MagicColumns * Devise::Invitable - -