action_dispatch and action_view are just more autoloads, so its okay to require them

This commit is contained in:
Joshua Peek 2009-08-31 14:49:59 -05:00
parent c63dac81c1
commit 8974ab2e2e
1 changed files with 2 additions and 3 deletions

View File

@ -59,9 +59,8 @@ end
autoload :HTML, 'action_controller/vendor/html-scanner'
autoload :AbstractController, 'abstract_controller'
autoload :Rack, 'action_dispatch'
autoload :ActionDispatch, 'action_dispatch'
autoload :ActionView, 'action_view'
require 'action_dispatch'
require 'action_view'
# Common ActiveSupport usage in ActionController
require "active_support/concern"