Class: Dynamoid::TypeCasting::Base
- Inherits:
-
Object
- Object
- Dynamoid::TypeCasting::Base
- Defined in:
- lib/dynamoid/type_casting.rb
Direct Known Subclasses
ArrayTypeCaster, BinaryTypeCaster, BooleanTypeCaster, CustomTypeCaster, DateTimeTypeCaster, DateTypeCaster, IntegerTypeCaster, MapTypeCaster, NumberTypeCaster, RawTypeCaster, SerializedTypeCaster, SetTypeCaster, StringTypeCaster
Instance Method Summary collapse
-
#initialize(options) ⇒ Base
constructor
A new instance of Base.
- #process(value) ⇒ Object
Constructor Details
#initialize(options) ⇒ Base
Returns a new instance of Base.
49 50 51 |
# File 'lib/dynamoid/type_casting.rb', line 49 def initialize() @options = end |
Instance Method Details
#process(value) ⇒ Object
53 54 55 |
# File 'lib/dynamoid/type_casting.rb', line 53 def process(value) value end |