diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2014-05-15 06:03:23 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2014-05-15 06:03:23 +0100 |
commit | ee8dc39ebe88b294496d731150a9fdca35d9478c (patch) | |
tree | f7db22a6bd7a8829d316f071a8c0bed4cd064d53 | |
parent | 1961894d1254c71f816dad33ce0164fb88625479 (diff) | |
download | rails-ee8dc39ebe88b294496d731150a9fdca35d9478c.tar.gz rails-ee8dc39ebe88b294496d731150a9fdca35d9478c.tar.bz2 rails-ee8dc39ebe88b294496d731150a9fdca35d9478c.zip |
Add missing requires for require 'action_dispatch/routing'
-rw-r--r-- | actionpack/lib/action_dispatch/routing.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/routing/route_set.rb | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/routing.rb b/actionpack/lib/action_dispatch/routing.rb index 9cd884daa3..ce03164ca9 100644 --- a/actionpack/lib/action_dispatch/routing.rb +++ b/actionpack/lib/action_dispatch/routing.rb @@ -1,6 +1,7 @@ # encoding: UTF-8 require 'active_support/core_ext/object/to_param' require 'active_support/core_ext/regexp' +require 'active_support/dependencies/autoload' module ActionDispatch # The routing module provides URL rewriting in native Ruby. It's a way to diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index fd163a47f4..e79a96f0a7 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -1,11 +1,13 @@ require 'action_dispatch/journey' require 'forwardable' require 'thread_safe' +require 'active_support/concern' require 'active_support/core_ext/object/to_query' require 'active_support/core_ext/hash/slice' require 'active_support/core_ext/module/remove_method' require 'active_support/core_ext/array/extract_options' require 'action_controller/metal/exceptions' +require 'action_dispatch/http/request' module ActionDispatch module Routing |