method
raw_write_attribute
v4.2.7 -
Show latest stable
- Class:
ActiveRecord::AttributeMethods::Dirty
raw_write_attribute(attr, value)private
No documentation available.
# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 103
def raw_write_attribute(attr, value)
attr = attr.to_s
result = super
original_raw_attributes[attr] = value
result
end