Class: Dynamoid::Undumping::RawUndumper

Inherits:
Base
  • Object
show all
Defined in:
lib/dynamoid/undumping.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Dynamoid::Undumping::Base

Instance Method Details

#process(value) ⇒ Object



191
192
193
194
195
196
197
# File 'lib/dynamoid/undumping.rb', line 191

def process(value)
  if value.is_a?(Hash)
    undump_hash(value)
  else
    value
  end
end