aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-01-04 04:02:39 +0900
committerGitHub <noreply@github.com>2018-01-04 04:02:39 +0900
commitff4f69ff2d7c4880a04f5c963e0025af041b8e9d (patch)
tree3cbac94860626497a8de35ab072abd416b47d8e5 /guides
parentdbff1cee55a13ec7b0f135618555c3714bfd597b (diff)
parenteb44c91361a75311003a8b2e8991e91d2544deaf (diff)
downloadrails-ff4f69ff2d7c4880a04f5c963e0025af041b8e9d.tar.gz
rails-ff4f69ff2d7c4880a04f5c963e0025af041b8e9d.tar.bz2
rails-ff4f69ff2d7c4880a04f5c963e0025af041b8e9d.zip
Merge pull request #31632 from fatkodima/configuring.md-fix
Move `config.action_view.cache_template_loading` to proper section in configuring.md [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index b1e472bb74..1668f9e81a 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -66,8 +66,6 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
* `config.cache_classes` controls whether or not application classes and modules should be reloaded on each request. Defaults to `false` in development mode, and `true` in test and production modes.
-* `config.action_view.cache_template_loading` controls whether or not templates should be reloaded on each request. Defaults to whatever is set for `config.cache_classes`.
-
* `config.beginning_of_week` sets the default beginning of week for the
application. Accepts a valid week day symbol (e.g. `:monday`).
@@ -538,6 +536,8 @@ Defaults to `'signed cookie'`.
`config.action_view` includes a small number of configuration settings:
+* `config.action_view.cache_template_loading` controls whether or not templates should be reloaded on each request. Defaults to whatever is set for `config.cache_classes`.
+
* `config.action_view.field_error_proc` provides an HTML generator for displaying errors that come from Active Model. The default is
```ruby