aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2015-06-07 14:51:53 +0200
committerRobin Dupret <robin.dupret@gmail.com>2015-06-07 14:53:24 +0200
commit27eccc27cbe987be04bb97b49aff1d7fd118634c (patch)
tree9f3cfba2ffb773955ea288fa883418b6b0ef83de /guides/source/configuring.md
parentc429674f8625fccdc7c2a0e685f122de4531552c (diff)
downloadrails-27eccc27cbe987be04bb97b49aff1d7fd118634c.tar.gz
rails-27eccc27cbe987be04bb97b49aff1d7fd118634c.tar.bz2
rails-27eccc27cbe987be04bb97b49aff1d7fd118634c.zip
A few documentation tweaks [ci skip]
[Robin Dupret & Shunsuke Aida]
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 634b9c1ad0..d74aa319e7 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -186,7 +186,8 @@ The full set of methods that can be used in this block are as follows:
* `javascript_engine` configures the engine to be used (for eg. coffee) when generating assets. Defaults to `:js`.
* `orm` defines which orm to use. Defaults to `false` and will use Active Record by default.
* `resource_controller` defines which generator to use for generating a controller when using `rails generate resource`. Defaults to `:controller`.
-* `resource_route` defines whether inject resource route definition in routes or not. Defaults to `true`.
+* `resource_route` defines whether a resource route definition should be generated
+ or not. Defaults to `true`.
* `scaffold_controller` different from `resource_controller`, defines which generator to use for generating a _scaffolded_ controller when using `rails generate scaffold`. Defaults to `:scaffold_controller`.
* `stylesheets` turns on the hook for stylesheets in generators. Used in Rails for when the `scaffold` generator is run, but this hook can be used in other generates as well. Defaults to `true`.
* `stylesheet_engine` configures the stylesheet engine (for eg. sass) to be used when generating assets. Defaults to `:css`.