diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-17 12:42:29 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2013-07-02 17:00:33 -0700 |
commit | e359e3ab935d6790d9a1181e6ebe0038ad168b94 (patch) | |
tree | 8925d006c220f65307bc298514d505288b134a70 /actionpack | |
parent | b9771813e37c0034744d4c5b8c0896b2aadbcc80 (diff) | |
download | rails-e359e3ab935d6790d9a1181e6ebe0038ad168b94.tar.gz rails-e359e3ab935d6790d9a1181e6ebe0038ad168b94.tar.bz2 rails-e359e3ab935d6790d9a1181e6ebe0038ad168b94.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 bfa816798d..8e28e0d31a 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -1,6 +1,7 @@ require 'active_support/core_ext/hash/except' require 'active_support/core_ext/object/blank' require 'active_support/core_ext/object/inclusion' +require 'active_support/core_ext/enumerable' require 'active_support/inflector' require 'action_dispatch/routing/redirection' |