class Object

frozen_string_literal: true

def self.yaml_tag url

def self.yaml_tag url
  Psych.add_tag(url, self)
end

def to_yaml options = {}

available +options+.
Convert an object to YAML. See Psych.dump for more information on the

call-seq: to_yaml(options = {})
##
def to_yaml options = {}
  Psych.dump self, options
end