class Object
Public Class Methods
yaml_tag(url)
click to toggle source
# File lib/psych/core_ext.rb, line 2 def self.yaml_tag url Psych.add_tag(url, self) end
Public Instance Methods
Convert an object to YAML. See Psych.dump
for more information on the available options
.
# File lib/psych/core_ext.rb, line 13 def psych_to_yaml options = {} Psych.dump self, options end
Also aliased as: to_yaml