diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-01 11:06:47 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-02 17:50:12 -0800 |
commit | b540eca5889d7a28fac39c9ec0df715aa89487ce (patch) | |
tree | 76a8ef40d8a9e99f1dc36a5b526b9a4c9c62567c /actionpack | |
parent | 8935854375a6c08acd617beaec30f6fd09a29ea0 (diff) | |
download | rails-b540eca5889d7a28fac39c9ec0df715aa89487ce.tar.gz rails-b540eca5889d7a28fac39c9ec0df715aa89487ce.tar.bz2 rails-b540eca5889d7a28fac39c9ec0df715aa89487ce.zip |
Consolidate Object#to_param and #to_query core extensions
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/routing.rb b/actionpack/lib/action_dispatch/routing.rb index b9c377db2c..68ed1e3340 100644 --- a/actionpack/lib/action_dispatch/routing.rb +++ b/actionpack/lib/action_dispatch/routing.rb @@ -1,6 +1,4 @@ -require 'active_support/core_ext/object/conversions' -require 'active_support/core_ext/boolean/conversions' -require 'active_support/core_ext/nil/conversions' +require 'active_support/core_ext/object/to_param' require 'active_support/core_ext/regexp' module ActionDispatch |