Namespace
Methods
R
W
Constants
WriterMethodCache = Class.new(AttributeMethodCache) { private def method_body(method_name, const_name) <<-EOMETHOD def #{method_name}(value) name = ::ActiveRecord::AttributeMethods::AttrNames::ATTR_#{const_name} write_attribute(name, value) end EOMETHOD end }.new
 
Instance Public methods
raw_write_attribute(attr_name, value)
# File activerecord/lib/active_record/attribute_methods/write.rb, line 59
def raw_write_attribute(attr_name, value)
  write_attribute_with_type_cast(attr_name, value, false)
end
write_attribute(attr_name, value)

Updates the attribute identified by attr_name with the specified value. Empty strings for Integer and Float columns are turned into nil.

# File activerecord/lib/active_record/attribute_methods/write.rb, line 55
def write_attribute(attr_name, value)
  write_attribute_with_type_cast(attr_name, value, true)
end