aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorTakatoshi Ono <takatoshi.ono@gmail.com>2015-11-17 20:05:39 +0900
committerTakatoshi Ono <takatoshi.ono@gmail.com>2015-11-17 20:05:39 +0900
commit02d57b6270e82ea55574df44db64936f3904c740 (patch)
tree892bc411cd6965629b930fa5a44dc35d2eceb7b9 /guides
parent5e36c5057adf838368ab9268a1436bb9d5e41b88 (diff)
downloadrails-02d57b6270e82ea55574df44db64936f3904c740.tar.gz
rails-02d57b6270e82ea55574df44db64936f3904c740.tar.bz2
rails-02d57b6270e82ea55574df44db64936f3904c740.zip
Fix set_autoload_paths and set_load_path document
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 729d1cc661..a8e53f3a77 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -1043,9 +1043,9 @@ Below is a comprehensive list of all the initializers found in Rails in the orde
* `action_mailer.compile_config_methods` Initializes methods for the config settings specified so that they are quicker to access.
-* `set_load_path` This initializer runs before `bootstrap_hook`. Adds the `vendor`, `lib`, all directories of `app` and any paths specified by `config.load_paths` to `$LOAD_PATH`.
+* `set_load_path` This initializer runs before `bootstrap_hook`. Adds paths specified by `config.load_paths` and all autoload paths to `$LOAD_PATH`.
-* `set_autoload_paths` This initializer runs before `bootstrap_hook`. Adds all sub-directories of `app` and paths specified by `config.autoload_paths` to `ActiveSupport::Dependencies.autoload_paths`.
+* `set_autoload_paths` This initializer runs before `bootstrap_hook`. Adds all sub-directories of `app` and paths specified by `config.autoload_paths`, `config.eager_load_paths` and `config.autoload_once_paths` to `ActiveSupport::Dependencies.autoload_paths`.
* `add_routing_paths` Loads (by default) all `config/routes.rb` files (in the application and railties, including engines) and sets up the routes for the application.