| 17 | | Installing the Login Engine is fairly simple. You'll probably need to accept the SSL certificate here for the OpenSVN servers. For example: |
|---|
| 18 | | $ script/plugin install login_engine |
|---|
| 19 | | or |
|---|
| 20 | | % svn co https://opensvn.csie.org/rails_engines/plugins/login_engine <MY_RAILS_APP>/vendor/plugins/login_engine |
|---|
| | 17 | Installing the Login Engine is fairly simple. You can use either Rails' own built in plugin manager (since Engines are still plugins), or SVN itself if you are happier with that. |
|---|
| | 18 | |
|---|
| | 19 | === <tt>script/plugin</tt> |
|---|
| | 20 | |
|---|
| | 21 | $ ruby script/plugin discover |
|---|
| | 22 | $ ruby script/plugin install engines |
|---|
| | 23 | $ ruby script/plugin install login_engine |
|---|
| | 24 | |
|---|
| | 25 | === SVN |
|---|
| | 26 | |
|---|
| | 27 | $ cd your_app_directory |
|---|
| | 28 | % svn co http://opensvn.csie.org/rails_engines/plugins/engines |
|---|
| | 29 | % svn co http://opensvn.csie.org/rails_engines/plugins/login_engine |
|---|
| | 30 | |
|---|
| | 31 | |
|---|
| | 32 | === Setup your Rails application |
|---|