module Draftsman::Serializers::Yaml

Public Instance Methods

dump(object) click to toggle source
# File lib/draftsman/serializers/yaml.rb, line 12
def dump(object)
  YAML.dump object
end
load(string) click to toggle source
# File lib/draftsman/serializers/yaml.rb, line 8
def load(string)
  YAML.load string
end