Module: DuckRecord::AttributeMethods::Write

Extended by:
ActiveSupport::Concern
Defined in:
lib/duck_record/attribute_methods/write.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#raw_write_attribute(attr_name, value) ⇒ Object

:nodoc:



46
47
48
# File 'lib/duck_record/attribute_methods/write.rb', line 46

def raw_write_attribute(attr_name, value) # :nodoc:
  write_attribute_with_type_cast(attr_name, value, false)
end

#write_attribute(attr_name, value) ⇒ Object

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



31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/duck_record/attribute_methods/write.rb', line 31

def write_attribute(attr_name, value)
  name =
    if self.class.attribute_alias?(attr_name)
      self.class.attribute_alias(attr_name).to_s
    else
      attr_name.to_s
    end

  if self.class.readonly_attributes.include?(name) && attr_readonly_enabled?
    return
  end

  write_attribute_with_type_cast(name, value, true)
end