diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-17 12:42:29 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-17 12:43:04 -0300 |
commit | f9872207564c9c9dd5b4c7ecf02f2387cbceed9a (patch) | |
tree | 8f7a7df606948f0053cd353ebc3283ae75bb9209 /actionpack | |
parent | d266c2e0da0e9835e9156278d24e596d671be2b2 (diff) | |
download | rails-f9872207564c9c9dd5b4c7ecf02f2387cbceed9a.tar.gz rails-f9872207564c9c9dd5b4c7ecf02f2387cbceed9a.tar.bz2 rails-f9872207564c9c9dd5b4c7ecf02f2387cbceed9a.zip |
Add missing require
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index c0dd1fe38b..cdc29fb304 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -1,5 +1,6 @@ require 'active_support/core_ext/hash/except' require 'active_support/core_ext/object/blank' +require 'active_support/core_ext/enumerable' require 'active_support/inflector' require 'action_dispatch/routing/redirection' |