forked from gundestrup/acts_as_authenticated
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
22 lines (12 loc) · 819 Bytes
/
README
File metadata and controls
22 lines (12 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
acts_as_authenticated generator
====
DEPRECATED: Use restful_authentication instead. Or, ask me for commit rights if you wish to maintain this plugin.
This is a basic authentication generator for rails, very much in the spirit of xal's original Login Generator.
To use:
./script/generate authenticated user account
This generates a basic user model, a controller, some basic views, and tests. Extra functionality can be unlocked by
removing the comments for them. I have a few examples such as user activation and reversible encrypted passwords.
The user migration is also generated unless you pass --skip-migration.
Generate your mailer:
./script/generate authenticated_mailer user
Consult the Acts As Authenticated wiki for more: http://technoweenie.stikipad.com/plugins/show/Acts+as+Authenticated