aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view.rb')
-rw-r--r--actionpack/lib/action_view.rb15
1 files changed, 6 insertions, 9 deletions
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb
index d7292e8324..dada64a86f 100644
--- a/actionpack/lib/action_view.rb
+++ b/actionpack/lib/action_view.rb
@@ -30,13 +30,15 @@ module ActionView
extend ActiveSupport::Autoload
eager_autoload do
+ autoload :Base
autoload :Context
- autoload :Template
autoload :Helpers
- autoload :Base
autoload :LookupContext
- autoload :PathSet, "action_view/paths"
- autoload :TestCase, "action_view/test_case"
+ autoload :Partials
+ autoload :PathSet
+ autoload :Rendering
+ autoload :Template
+ autoload :TestCase
autoload_under "renderer" do
autoload :AbstractRenderer
@@ -44,11 +46,6 @@ module ActionView
autoload :TemplateRenderer
end
- autoload_under "render" do
- autoload :Partials
- autoload :Rendering
- end
-
autoload_at "action_view/template/resolver" do
autoload :Resolver
autoload :PathResolver