aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2009-12-28 17:30:43 -0800
committerCarl Lerche <carllerche@mac.com>2009-12-28 17:53:05 -0800
commitd747b6847ba6e3770986e445f7365efae6077df3 (patch)
tree49b1cc99e24624b2c267bf7015db6f84213f1a20 /actionpack
parentc02f2782631a1893e2e880e3ccc65fb9a734567a (diff)
downloadrails-d747b6847ba6e3770986e445f7365efae6077df3.tar.gz
rails-d747b6847ba6e3770986e445f7365efae6077df3.tar.bz2
rails-d747b6847ba6e3770986e445f7365efae6077df3.zip
Require active_support/dependencies/autoload in action_dispatch
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_dispatch.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch.rb b/actionpack/lib/action_dispatch.rb
index 0696cb017c..7f61ff5657 100644
--- a/actionpack/lib/action_dispatch.rb
+++ b/actionpack/lib/action_dispatch.rb
@@ -24,6 +24,7 @@
activesupport_path = File.expand_path('../../../activesupport/lib', __FILE__)
$:.unshift(activesupport_path) if File.directory?(activesupport_path) && !$:.include?(activesupport_path)
require 'active_support/ruby/shim'
+require 'active_support/dependencies/autoload'
require 'rack'