aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2015-02-16 12:57:50 -0800
committerZachary Scott <e@zzak.io>2015-02-16 12:57:50 -0800
commit05b6e5d8b728e4e6cc70b9d7eb5b60160b01d168 (patch)
tree5da5dfea58ef9d65b691a3a4a51881ff451fcb71 /guides
parent4954417f69b406fe4e4d14a467be76b1b3b0144c (diff)
parentc732a66d09b807cf4d772ce0f5ca3ed8687f56b6 (diff)
downloadrails-05b6e5d8b728e4e6cc70b9d7eb5b60160b01d168.tar.gz
rails-05b6e5d8b728e4e6cc70b9d7eb5b60160b01d168.tar.bz2
rails-05b6e5d8b728e4e6cc70b9d7eb5b60160b01d168.zip
Merge pull request #18960 from ctaintor/remove_dependency_doc
removes documentation that is no longer relevant
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 994cc31cff..7e00b59f75 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
----------------