Change generators controller help from singular to plural example.

When running `rails generate controller --help` an example
with creating a (singular) "CreditCard" controller is
shown. The convention is to generate controllers with plural
names though.
This commit is contained in:
Philipp Weissensteiner 2012-08-28 13:40:11 +02:00
parent 114463305f
commit 8102c0d9ed

@ -9,10 +9,10 @@ Description:
template engine and test framework generators.
Example:
`rails generate controller CreditCard open debit credit close`
`rails generate controller CreditCards open debit credit close`
Credit card controller with URLs like /credit_card/debit.
Controller: app/controllers/credit_card_controller.rb
Functional Test: test/functional/credit_card_controller_test.rb
Views: app/views/credit_card/debit.html.erb [...]
Helper: app/helpers/credit_card_helper.rb
CreditCards controller with URLs like /credit_cards/debit.
Controller: app/controllers/credit_cards_controller.rb
Functional Test: test/functional/credit_cards_controller_test.rb
Views: app/views/credit_cards/debit.html.erb [...]
Helper: app/helpers/credit_cards_helper.rb