Method: ActiveDelegate::Attribute::Accessor#read

Defined in:
lib/active_delegate/attribute/accessor.rb

#read(*args) ⇒ Object



67
68
69
70
# File 'lib/active_delegate/attribute/accessor.rb', line 67

def read(*args)
  value = attribute_value(*args) || default_value
  type_cast? ? cast_read_value(value) : value
end