Class: Dynamoid::TypeCasting::StringTypeCaster
- Defined in:
- lib/dynamoid/type_casting.rb
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Dynamoid::TypeCasting::Base
Instance Method Details
#process(value) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/dynamoid/type_casting.rb', line 59 def process(value) case value when true 't' when false 'f' when String value.dup else value.to_s end end |