mirror of
https://github.com/github/rails.git
synced 2026-01-12 16:19:01 -05:00
Ensure ActionView::TemplateFinder view cache is rebuilt on initialize.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*Edge*
|
||||
|
||||
* Ensure ActionView::TemplateFinder view cache is rebuilt on initialize [Josh Peek]
|
||||
|
||||
* Drop ActionController::Base.allow_concurrency flag [Josh Peek]
|
||||
|
||||
* More efficient concat and capture helpers. Remove ActionView::Base.erb_variable. [Jeremy Kemper]
|
||||
|
||||
@@ -10,6 +10,10 @@ module ActionController
|
||||
# Development mode callbacks
|
||||
before_dispatch :reload_application
|
||||
after_dispatch :cleanup_application
|
||||
|
||||
to_prepare :reload_view_path_cache do
|
||||
ActionView::TemplateFinder.reload! unless ActionView::Base.cache_template_loading
|
||||
end
|
||||
end
|
||||
|
||||
# Common callbacks
|
||||
@@ -134,7 +138,6 @@ module ActionController
|
||||
run_callbacks :prepare_dispatch
|
||||
|
||||
Routing::Routes.reload
|
||||
ActionView::TemplateFinder.reload! unless ActionView::Base.cache_template_loading
|
||||
end
|
||||
|
||||
# Cleanup the application by clearing out loaded classes so they can
|
||||
|
||||
Reference in New Issue
Block a user