diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-13 13:33:16 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-13 13:33:16 -0300 |
commit | 7fa6c16b7070b4359cf001a39125afb2cfc4736c (patch) | |
tree | 7e23a6744a5c18cbaf8efc3a62f95dc7b0f4906c /activesupport | |
parent | dceef0828a23e8298dd9a9aab1a33c49e84f17d6 (diff) | |
download | rails-7fa6c16b7070b4359cf001a39125afb2cfc4736c.tar.gz rails-7fa6c16b7070b4359cf001a39125afb2cfc4736c.tar.bz2 rails-7fa6c16b7070b4359cf001a39125afb2cfc4736c.zip |
Added missing require and delete unused one on proc.rb
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/proc.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/proc.rb b/activesupport/lib/active_support/core_ext/proc.rb index 71b413a88a..94bb5fb0cb 100644 --- a/activesupport/lib/active_support/core_ext/proc.rb +++ b/activesupport/lib/active_support/core_ext/proc.rb @@ -1,4 +1,4 @@ -require "active_support/core_ext/object" +require "active_support/core_ext/kernel/singleton_class" class Proc #:nodoc: def bind(object) |