Sha256: c7336455f395f0d260f4593afc0a11418b4f0a3dfd11a50725f766009f7ef0be
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
require 'ivy/serializers/formats/json' module Ivy module Serializers module Formats class ActiveModelSerializers < JSON def belongs_to(name, resource, options={}) if options[:polymorphic] if resource @hash_gen.store_object(name) { polymorphic_resource(resource) } else @hash_gen.store(name, nil) end else id(:"#{name}_id", resource) end end def has_many(name, resources, options={}) if options[:polymorphic] @hash_gen.store_array(name) { polymorphic_resources(resources) } else ids(:"#{ActiveSupport::Inflector.singularize(name.to_s)}_ids", resources) end end private def polymorphic_resource(resource) id(:id, resource) type(:type, resource) end def polymorphic_resources(resources) resources.each { |resource| @hash_gen.push_object { polymorphic_resource(resource) } } end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ivy-serializers-0.1.0 | lib/ivy/serializers/formats/active_model_serializers.rb |