Sha256: 2c6926a6318e966525fa3fd510f795973926281a9cdb75cee51b5b37fa046f99
Contents?: true
Size: 387 Bytes
Versions: 26
Compression:
Stored size: 387 Bytes
Contents
module Foobara module CommandConnectors module Serializers # TODO: move this to its own project class JsonSerializer < Serializer def serialize(object) JSON.fast_generate(object) end def deserialize(string) JSON.parse(string) end def priority Priority::LOW end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems