Sha256: e73426cea9f555fdf98c47690d5d0f1e4ba9911f7f80f5518f54371a66b1ed10
Contents?: true
Size: 377 Bytes
Versions: 26
Compression:
Stored size: 377 Bytes
Contents
module Foobara module CommandConnectors module Serializers # TODO: move this to its own project class YamlSerializer < Serializer def serialize(object) YAML.dump(object) end def deserialize(string) YAML.load(string) end def priority Priority::LOW end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems