acts_as_authenticatedをインストール

EclipseRadRailsRails pluginsからインストールする。
プラグインの一覧からActs as Authenticatedを選択する。


Installラジオボタンを選択し、Goボタンを押下する。
下記のようにConsoleに出力される。

+ ./acts_as_authenticated/CHANGELOG
+ ./acts_as_authenticated/README
+ ./acts_as_authenticated/generators/authenticated/USAGE
+ ./acts_as_authenticated/generators/authenticated/authenticated_generator.rb
+ ./acts_as_authenticated/generators/authenticated/templates/authenticated_system.rb
+ ./acts_as_authenticated/generators/authenticated/templates/authenticated_test_helper.rb
+ ./acts_as_authenticated/generators/authenticated/templates/controller.rb
+ ./acts_as_authenticated/generators/authenticated/templates/fixtures.yml
+ ./acts_as_authenticated/generators/authenticated/templates/functional_test.rb
+ ./acts_as_authenticated/generators/authenticated/templates/helper.rb
+ ./acts_as_authenticated/generators/authenticated/templates/index.rhtml
+ ./acts_as_authenticated/generators/authenticated/templates/login.rhtml
+ ./acts_as_authenticated/generators/authenticated/templates/migration.rb
+ ./acts_as_authenticated/generators/authenticated/templates/model.rb
+ ./acts_as_authenticated/generators/authenticated/templates/signup.rhtml
+ ./acts_as_authenticated/generators/authenticated/templates/unit_test.rb
+ ./acts_as_authenticated/generators/authenticated_mailer/USAGE
+ ./acts_as_authenticated/generators/authenticated_mailer/authenticated_mailer_generator.rb
+ ./acts_as_authenticated/generators/authenticated_mailer/templates/activation.rhtml
+ ./acts_as_authenticated/generators/authenticated_mailer/templates/notifier.rb
+ ./acts_as_authenticated/generators/authenticated_mailer/templates/notifier_test.rb
+ ./acts_as_authenticated/generators/authenticated_mailer/templates/observer.rb
+ ./acts_as_authenticated/generators/authenticated_mailer/templates/signup_notification.rhtml
+ ./acts_as_authenticated/install.rb
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


vendor/pluginsにacts_as_authenticatedが作成される。


これでインストールは完了。