aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base.rb
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-01 17:53:20 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-01 17:53:20 -0700
commit7dd072d333040d2bb1197baa55fddfb9b72053bd (patch)
tree90218761072e9c213c8653db5ce30f43b0690476 /actionpack/lib/action_controller/new_base.rb
parente046f36824fcc164c284a13524c6b4153010a4e1 (diff)
downloadrails-7dd072d333040d2bb1197baa55fddfb9b72053bd.tar.gz
rails-7dd072d333040d2bb1197baa55fddfb9b72053bd.tar.bz2
rails-7dd072d333040d2bb1197baa55fddfb9b72053bd.zip
A few more tweaks to get new Base running old render tests again
Diffstat (limited to 'actionpack/lib/action_controller/new_base.rb')
-rw-r--r--actionpack/lib/action_controller/new_base.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/new_base.rb b/actionpack/lib/action_controller/new_base.rb
index b292fd579d..7098b812f6 100644
--- a/actionpack/lib/action_controller/new_base.rb
+++ b/actionpack/lib/action_controller/new_base.rb
@@ -10,10 +10,14 @@ module ActionController
# Ported modules
# require 'action_controller/routing'
- autoload :Dispatcher, 'action_controller/dispatch/dispatcher'
+ autoload :Dispatcher, 'action_controller/dispatch/dispatcher'
autoload :PolymorphicRoutes, 'action_controller/routing/generation/polymorphic_routes'
- autoload :Resources, 'action_controller/routing/resources'
+ autoload :RecordIdentifier, 'action_controller/record_identifier'
+ autoload :Resources, 'action_controller/routing/resources'
autoload :SessionManagement, 'action_controller/base/session_management'
+ autoload :TestCase, 'action_controller/testing/test_case'
+ autoload :UrlRewriter, 'action_controller/routing/generation/url_rewriter'
+ autoload :UrlWriter, 'action_controller/routing/generation/url_rewriter'
require 'action_controller/routing'
end