diff options
author | Aditya Kapoor <aditya.kapoor@vinsol.com> | 2014-06-07 20:58:29 +0530 |
---|---|---|
committer | Aditya Kapoor <aditya.kapoor@vinsol.com> | 2014-06-07 20:58:29 +0530 |
commit | 269ad13be7d2d201a12ff7e422a98cf5d6a0ab89 (patch) | |
tree | 502389b5d094367441833dcc606a6abbac75608e /guides | |
parent | 23a751c2e15800c1b4aa96c10d1bfebc56fa30b9 (diff) | |
download | rails-269ad13be7d2d201a12ff7e422a98cf5d6a0ab89.tar.gz rails-269ad13be7d2d201a12ff7e422a98cf5d6a0ab89.tar.bz2 rails-269ad13be7d2d201a12ff7e422a98cf5d6a0ab89.zip |
Correct Example output in Rails guides [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/command_line.md | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md index 6efc64c385..7e60f929a1 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -123,19 +123,18 @@ Usage: rails generate controller NAME [action action] [options] Description: ... - To create a controller within a module, specify the controller name as a - path like 'parent_module/controller_name'. + To create a controller within a module, specify the controller name as a path like 'parent_module/controller_name'. ... 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. + Credit card controller with URLs like /credit_cards/debit. Controller: app/controllers/credit_card_controller.rb - Test: test/controllers/credit_card_controller_test.rb - Views: app/views/credit_card/debit.html.erb [...] - Helper: app/helpers/credit_card_helper.rb + Test: test/controllers/credit_cards_controller_test.rb + Views: app/views/credit_cards/debit.html.erb [...] + Helper: app/helpers/credit_cards_helper.rb ``` The controller generator is expecting parameters in the form of `generate controller ControllerName action1 action2`. Let's make a `Greetings` controller with an action of **hello**, which will say something nice to us. |