Class: Contentful::ObjectCoercion

Inherits:
BaseCoercion show all
Defined in:
lib/contentful/coercions.rb

Overview

Coercion for Object Types

Instance Attribute Summary

Attributes inherited from BaseCoercion

#options, #value

Instance Method Summary collapse

Methods inherited from BaseCoercion

#initialize

Constructor Details

This class inherits a constructor from Contentful::BaseCoercion

Instance Method Details

#coerceObject

Coerces value to hash, symbolizing each key



81
82
83
# File 'lib/contentful/coercions.rb', line 81

def coerce(*)
  JSON.parse(JSON.dump(value), symbolize_names: true)
end