Class: Dynamoid::Dumping::SetDumper
- Defined in:
- lib/dynamoid/dumping.rb
Overview
set -> set
Constant Summary collapse
- ALLOWED_TYPES =
[:string, :integer, :number, :date, :datetime, :serialized]
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Dynamoid::Dumping::Base
Instance Method Details
#process(set) ⇒ Object
71 72 73 74 75 76 77 |
# File 'lib/dynamoid/dumping.rb', line 71 def process(set) if @options.key?(:of) process_typed_collection(set) else set end end |