Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
[selectricity] / vendor / plugins / acts_as_authenticated / README
1 acts_as_authenticated generator
2 ====
3
4 This is a basic authentication generator for rails, very much in the spirit of xal's original Login Generator.
5
6 To use:
7
8   ./script/generate authenticated user account
9
10 This generates a basic user model, a controller, some basic views, and tests.  Extra functionality can be unlocked by
11 removing the comments for them.  I have a few examples such as user activation and reversible encrypted passwords.
12
13 The user migration is also generated unless you pass --skip-migration.
14
15 Generate your mailer:
16
17   ./script/generate authenticated_mailer user
18
19 Consult the Acts As Authenticated wiki for more: http://technoweenie.stikipad.com/plugins/show/Acts+as+Authenticated
20    

Benjamin Mako Hill || Want to submit a patch?