diff options
author | Kamil Śliwak <cameel2@gmail.com> | 2011-08-14 17:23:02 -0700 |
---|---|---|
committer | Kamil Śliwak <cameel2@gmail.com> | 2011-08-14 17:23:02 -0700 |
commit | 9e3f0cdbbf5aac484aa55350b50db13db3d3ddf0 (patch) | |
tree | f3b72407bc5fd9cb536c4d0adee1c1237da5ebf5 /railties | |
parent | 7712db4c82975403913e0395f860242ead322570 (diff) | |
parent | c026cc254cd1afd2f4f3dbaa6b537ed4c8c5a4f3 (diff) | |
download | rails-9e3f0cdbbf5aac484aa55350b50db13db3d3ddf0.tar.gz rails-9e3f0cdbbf5aac484aa55350b50db13db3d3ddf0.tar.bz2 rails-9e3f0cdbbf5aac484aa55350b50db13db3d3ddf0.zip |
Merge pull request #58 from cameel/fix-set_autoload_path-typo
Fix a typo in 'Configuring Rails Applications' guide
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 2ff5de2334..110c04f66e 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -557,7 +557,7 @@ The error occurred while evaluating nil.each *+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_autoload_path+* 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+ 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. |