Class: ActiveFields::Casters::EnumArrayCaster
Instance Attribute Summary
Attributes inherited from BaseCaster
#options
Instance Method Summary
collapse
Methods inherited from BaseCaster
#initialize
Instance Method Details
#deserialize(value) ⇒ Object
12
13
14
15
16
|
# File 'lib/active_fields/casters/enum_array_caster.rb', line 12
def deserialize(value)
return unless value.is_a?(Array)
value.map { super(_1) }
end
|
#serialize(value) ⇒ Object
6
7
8
9
10
|
# File 'lib/active_fields/casters/enum_array_caster.rb', line 6
def serialize(value)
return unless value.is_a?(Array)
value.map { super(_1) }
end
|