diff options
author | Xavier Noria <fxn@hashref.com> | 2009-11-09 21:11:26 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-11-09 22:16:51 +0100 |
commit | 1979e9c8553f4d7905822fdcc99e52d179e78c3c (patch) | |
tree | c0b82d5b85bec43c14fc215aa8082e020df35dae /activerecord | |
parent | d4513ac69958063de3cad9aa655fe9d63e82ec76 (diff) | |
download | rails-1979e9c8553f4d7905822fdcc99e52d179e78c3c.tar.gz rails-1979e9c8553f4d7905822fdcc99e52d179e78c3c.tar.bz2 rails-1979e9c8553f4d7905822fdcc99e52d179e78c3c.zip |
Symbol#to_proc is not needed for Ruby >= 1.8.7
Diffstat (limited to 'activerecord')
-rwxr-xr-x | activerecord/lib/active_record/base.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 4e6090458a..056f29f029 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -12,7 +12,6 @@ require 'active_support/core_ext/hash/deep_merge' require 'active_support/core_ext/hash/indifferent_access' require 'active_support/core_ext/hash/slice' require 'active_support/core_ext/string/behavior' -require 'active_support/core_ext/symbol' require 'active_support/core_ext/object/metaclass' module ActiveRecord #:nodoc: |