aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorCase Taintor <case.taintor@klarna.com>2015-02-16 22:42:04 +0200
committerCase Taintor <case.taintor@klarna.com>2015-02-16 22:42:04 +0200
commitc732a66d09b807cf4d772ce0f5ca3ed8687f56b6 (patch)
tree6aef53089060d2f863d3fffd1e37df2d53b86e98 /guides
parent6bd777c85156aca0cf2d1f34d8c1fe37d96ac3d9 (diff)
downloadrails-c732a66d09b807cf4d772ce0f5ca3ed8687f56b6.tar.gz
rails-c732a66d09b807cf4d772ce0f5ca3ed8687f56b6.tar.bz2
rails-c732a66d09b807cf4d772ce0f5ca3ed8687f56b6.zip
removes docs for dependency_loading config option and disable_dependency_loading initializer because it was removed by commit a8bf12979e5fa15282b39c8cfa315e663f613539
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 9c0f2ddc8a..7faffe13c0 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.
@@ -997,8 +995,6 @@ Below is a comprehensive list of all the initializers found in Rails in the orde
* `set_routes_reloader` Configures Action Dispatch to reload the routes file using `ActionDispatch::Callbacks.to_prepare`.
-* `disable_dependency_loading` Disables the automatic dependency loading if the `config.eager_load` is set to true.
-
Database pooling
----------------