public
Description: a forgot_password plugin that works well with restful-authentication.
Homepage:
Clone URL: git://github.com/greenisus/forgot_password.git
name age message
file MIT-LICENSE Sat Jul 26 18:01:53 -0700 2008 initial structure. nowhere near stable [greenisus]
file README Sun Jul 27 13:25:31 -0700 2008 dynamic class names [greenisus]
file Rakefile Sat Jul 26 18:01:53 -0700 2008 initial structure. nowhere near stable [greenisus]
directory generators/ Mon Nov 03 19:45:37 -0800 2008 Merge branch 'master' of git://github.com/ajsha... [greenisus]
file init.rb Sat Jul 26 18:01:53 -0700 2008 initial structure. nowhere near stable [greenisus]
file install.rb Sun Jul 27 13:27:39 -0700 2008 set up the readme [greenisus]
directory lib/ Sat Jul 26 18:01:53 -0700 2008 initial structure. nowhere near stable [greenisus]
directory tasks/ Sat Jul 26 18:01:53 -0700 2008 initial structure. nowhere near stable [greenisus]
directory test/ Sat Jul 26 18:01:53 -0700 2008 initial structure. nowhere near stable [greenisus]
file uninstall.rb Sat Jul 26 18:01:53 -0700 2008 initial structure. nowhere near stable [greenisus]
README
Thanks for using forgot_password!

In attempt to be flexible enough to work with multiple login systems (mainly restful-authentication and its ancestors), 
this plugin will generate a new controller to handle forgotten passwords.  Your user model must have accessors for 
password and password_confirmation, and handle its own password encryption.  I assume most people are using 
technoweenie's excellent restful-authentication plugin, so if you are you probably won't have any problems.

Usage:

ruby script/generate forgot_password <password-model-name> <user-model-name>

In most cases, that's probably:

ruby script/generate forgot_password password user

then run rake db:migrate and enjoy :)