aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/mailer/USAGE
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails_generator/generators/components/mailer/USAGE')
-rw-r--r--railties/lib/rails_generator/generators/components/mailer/USAGE5
1 files changed, 2 insertions, 3 deletions
diff --git a/railties/lib/rails_generator/generators/components/mailer/USAGE b/railties/lib/rails_generator/generators/components/mailer/USAGE
index 50d3de19de..a036998a1a 100644
--- a/railties/lib/rails_generator/generators/components/mailer/USAGE
+++ b/railties/lib/rails_generator/generators/components/mailer/USAGE
@@ -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