mirror of
https://github.com/github/rails.git
synced 2026-04-04 03:00:58 -04:00
Don't reload routes until plugins have been loaded so they have a chance to extend the routing capabilities [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2967 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Don't reload routes until plugins have been loaded so they have a chance to extend the routing capabilities [DHH]
|
||||
|
||||
* Don't detach or fork for script/server tailing [Nicholas Seckar]
|
||||
|
||||
* Added automatic browser launching on OS X when starting script/server [DHH]
|
||||
|
||||
@@ -82,7 +82,6 @@ module Rails
|
||||
initialize_logger
|
||||
initialize_framework_logging
|
||||
initialize_framework_views
|
||||
initialize_routing
|
||||
initialize_dependency_mechanism
|
||||
initialize_breakpoints
|
||||
initialize_whiny_nils
|
||||
@@ -97,6 +96,9 @@ module Rails
|
||||
load_framework_info
|
||||
|
||||
load_plugins
|
||||
|
||||
# Routing must be initialized after plugins to allow the former to extend the routes
|
||||
initialize_routing
|
||||
end
|
||||
|
||||
# Set the <tt>$LOAD_PATH</tt> based on the value of
|
||||
|
||||
Reference in New Issue
Block a user