diff options
author | Mislav Marohnić <mislav.marohnic@gmail.com> | 2010-04-16 14:44:08 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-04-16 06:11:38 -0700 |
commit | 8a91ccf97632ef949f3f99e8956b8235091389a7 (patch) | |
tree | 3a3bd4fcd37ffbff2c8845efb668afaa7d4870bf | |
parent | 5aa58cc03fa96d290a902e8fd2e6d013bc5d6147 (diff) | |
download | rails-8a91ccf97632ef949f3f99e8956b8235091389a7.tar.gz rails-8a91ccf97632ef949f3f99e8956b8235091389a7.tar.bz2 rails-8a91ccf97632ef949f3f99e8956b8235091389a7.zip |
add missing requires to Rescuable and RouteSet [#4415 state:committed]
Signed-off-by: Xavier Noria <fxn@hashref.com>
-rw-r--r-- | actionpack/lib/action_dispatch/routing/route_set.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/rescuable.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index f1965f38b9..fdbff74071 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -1,5 +1,6 @@ require 'rack/mount' require 'forwardable' +require 'active_support/core_ext/object/to_query' require 'action_dispatch/routing/deprecated_mapper' module ActionDispatch diff --git a/activesupport/lib/active_support/rescuable.rb b/activesupport/lib/active_support/rescuable.rb index e4c1651acf..cd6f92cdfe 100644 --- a/activesupport/lib/active_support/rescuable.rb +++ b/activesupport/lib/active_support/rescuable.rb @@ -1,3 +1,4 @@ +require 'active_support/concern' require 'active_support/core_ext/class/attribute' require 'active_support/core_ext/proc' require 'active_support/core_ext/string/inflections' |