1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Load HTML in ActionView not ActionPack

HTML Scanner is part of ActionView and it should be loaded along with it
This commit is contained in:
Łukasz Strzałkowski 2013-08-11 23:16:29 +02:00
parent 44bc45b014
commit c40c362ec1
2 changed files with 1 additions and 1 deletions

View file

@ -47,7 +47,6 @@ module ActionController
def self.eager_load!
super
ActionController::Caching.eager_load!
HTML.eager_load!
end
end

View file

@ -85,6 +85,7 @@ module ActionView
def self.eager_load!
super
ActionView::Template.eager_load!
HTML.eager_load!
end
end