Class: TypedAttributes::Parser::IdsType

Inherits:
ArrayType show all
Defined in:
lib/typed_attributes/parser/ids_type.rb

Instance Attribute Summary

Attributes inherited from BaseType

#attribute, #model, #options

Instance Method Summary collapse

Methods inherited from BaseType

#initialize, #readers, #storage_var, #writers

Constructor Details

This class inherits a constructor from TypedAttributes::Parser::BaseType

Instance Method Details

#parse(values) ⇒ Object



5
6
7
# File 'lib/typed_attributes/parser/ids_type.rb', line 5

def parse(values)
  super(values).map(&:to_i)
end