diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-11 06:10:22 -0800 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-11 06:10:22 -0800 |
commit | 3f8f96e9802c7f628f5b3abd48624e26d97e5ad9 (patch) | |
tree | dcc2036cc6e50cf047adcd16020adae48ac99aa2 /activerecord/lib/active_record | |
parent | 1bffd00114dba6427444bf42d7d43da4f0f475b9 (diff) | |
parent | dcebe7fc9c309b29a46e0920b8faf8da9e911cc8 (diff) | |
download | rails-3f8f96e9802c7f628f5b3abd48624e26d97e5ad9.tar.gz rails-3f8f96e9802c7f628f5b3abd48624e26d97e5ad9.tar.bz2 rails-3f8f96e9802c7f628f5b3abd48624e26d97e5ad9.zip |
Merge pull request #4408 from tomstuart/read-and-write-attribute-aliases
#[] and #[]= are no longer interchangeable with #read_attribute and #write_attribute
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods.rb | 10 |
1 files changed, 6 insertions, 4 deletions
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 <tt>attr_name</tt> 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 <tt>attr_name</tt> 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 |