aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2015-06-01 09:21:41 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2015-06-01 09:21:41 +0200
commitc4cb751da695aa9d2cbe45adcf53afc3d268e4fa (patch)
treed14f2edf148f04f071b49d6c68d8ec5047502861 /guides/source/configuring.md
parentefd3d20dd19e4fb1f5daa78a52ca83642953c92a (diff)
parent19ede1f85dc802c81ac80eed29b4e36a6b5b2286 (diff)
downloadrails-c4cb751da695aa9d2cbe45adcf53afc3d268e4fa.tar.gz
rails-c4cb751da695aa9d2cbe45adcf53afc3d268e4fa.tar.bz2
rails-c4cb751da695aa9d2cbe45adcf53afc3d268e4fa.zip
Merge pull request #20396 from nkondratyev/fix-guides
Remove description of `dependency_loading` option
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 0e669ed597..8734a9c762 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -88,8 +88,6 @@ application. Accepts a valid week day symbol (e.g. `:monday`).
end
```
-* `config.dependency_loading` is a flag that allows you to disable constant autoloading setting it to false. It only has effect if `config.cache_classes` is true, which it is by default in production mode.
-
* `config.eager_load` when true, eager loads all registered `config.eager_load_namespaces`. This includes your application, engines, Rails frameworks and any other registered namespace.
* `config.eager_load_namespaces` registers namespaces that are eager loaded when `config.eager_load` is true. All namespaces in the list must respond to the `eager_load!` method.