From dcebe7fc9c309b29a46e0920b8faf8da9e911cc8 Mon Sep 17 00:00:00 2001 From: Tom Stuart Date: Wed, 11 Jan 2012 10:00:39 +0000 Subject: Revert "Base#[] and Base#[]= are aliases so implement them as aliases :)" This reverts commit 21eadc1b3f2eb818a4833381ee0a6cfa205f2955. --- activerecord/lib/active_record/attribute_methods.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb index c5834e2fef..02543db2ce 100644 --- a/activerecord/lib/active_record/attribute_methods.rb +++ b/activerecord/lib/active_record/attribute_methods.rb @@ -20,13 +20,15 @@ module ActiveRecord # Returns the value of the attribute identified by attr_name after it has been typecast (for example, # "2004-12-12" in a data column is cast to a date object, like Date.new(2004, 12, 12)). # (Alias for the protected read_attribute method). - alias [] read_attribute + def [](attr_name) + read_attribute(attr_name) + end # Updates the attribute identified by attr_name with the specified +value+. # (Alias for the protected write_attribute method). - alias []= write_attribute - - public :[], :[]= + def []=(attr_name, value) + write_attribute(attr_name, value) + end end module ClassMethods -- cgit v1.2.3