diff options
author | Tobias Lütke <tobias.luetke@gmail.com> | 2006-01-11 17:36:22 +0000 |
---|---|---|
committer | Tobias Lütke <tobias.luetke@gmail.com> | 2006-01-11 17:36:22 +0000 |
commit | 7ff73dfe73eedf1119f493fc7ad620861c434d46 (patch) | |
tree | b923a6d6afe3f0451832de30ff5beac9c7bb9181 | |
parent | 16718e3e218cf5ad00943cc14e97938e2b3b2ca7 (diff) | |
download | rails-7ff73dfe73eedf1119f493fc7ad620861c434d46.tar.gz rails-7ff73dfe73eedf1119f493fc7ad620861c434d46.tar.bz2 rails-7ff73dfe73eedf1119f493fc7ad620861c434d46.zip |
fix for Initializer doc, routing is loaded last so that plugins can extend it
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3395 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/lib/initializer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb index d1fe8908bc..d8b951b284 100644 --- a/railties/lib/initializer.rb +++ b/railties/lib/initializer.rb @@ -61,13 +61,13 @@ module Rails # * #initialize_logger # * #initialize_framework_logging # * #initialize_framework_views - # * #initialize_routing # * #initialize_dependency_mechanism # * #initialize_breakpoints # * #initialize_whiny_nils # * #initialize_framework_settings # * #load_environment # * #load_plugins + # * #initialize_routing # # (Note that #load_environment is invoked twice, once at the start and # once at the end, to support the legacy configuration style where the |