Sha256: 552401e132038337f4fe014af26c5eaf91f4f236ea4914e7578011cbe1265eb1
Contents?: true
Size: 791 Bytes
Versions: 26
Compression:
Stored size: 791 Bytes
Contents
require_relative "success_serializer" module Foobara module CommandConnectors module Serializers class EntitiesToPrimaryKeysSerializer < SuccessSerializer def serialize(object) case object when Entity # TODO: handle polymorphism? Would require iterating over the result type not the object! # Is there maybe prior art for this in the associations stuff? object.primary_key when Model object.attributes when Array object.map { |element| serialize(element) } when Hash object.to_h do |key, value| [serialize(key), serialize(value)] end else object end end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems