Fix documentation for mailer generator

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2097 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2005-09-02 08:50:55 +00:00
parent 69d662051e
commit d54aea29fc

View File

@@ -2,8 +2,7 @@ Description:
The mailer generator creates stubs for a new mailer and its views.
The generator takes a mailer name and a list of views as arguments.
The mailer name may be given in CamelCase or under_score and should
not be suffixed with 'Mailer'.
The mailer name may be given in CamelCase or under_score.
The generator creates a mailer class in app/models with view templates
in app/views/mailer_name, and a test suite with fixtures in test/unit.
@@ -11,7 +10,7 @@ Description:
Example:
./script/generate mailer Notifications signup forgot_password invoice
This will create a NotificationsMailer:
This will create a Notifications mailer class:
Mailer: app/models/notifications.rb
Views: app/views/notifications/signup.rhtml [...]
Test: test/unit/credit_card_controller_test.rb