diff options
author | Xavier Noria <fxn@hashref.com> | 2009-06-13 01:01:42 +0200 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-06-12 16:14:06 -0700 |
commit | d32965399ccfa2052a4d52b70db1bae0ca16830b (patch) | |
tree | 7f41b1846efd2d11d7ebff15a115cba02ad75f11 /activerecord/lib/active_record/base.rb | |
parent | 54a5446641e4386285231385700b95a223931bff (diff) | |
download | rails-d32965399ccfa2052a4d52b70db1bae0ca16830b.tar.gz rails-d32965399ccfa2052a4d52b70db1bae0ca16830b.tar.bz2 rails-d32965399ccfa2052a4d52b70db1bae0ca16830b.zip |
uses Object#metaclass and Object#class_eval in a few spots
[#2797 state:committed]
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rwxr-xr-x | activerecord/lib/active_record/base.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index c4d143ab05..1fc0c93732 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -11,6 +11,7 @@ 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: # Generic Active Record exception class. @@ -2040,7 +2041,7 @@ module ActiveRecord #:nodoc: # end # end def define_attr_method(name, value=nil, &block) - sing = class << self; self; end + sing = metaclass sing.send :alias_method, "original_#{name}", name if block_given? sing.send :define_method, name, &block |