类 Object

公共类方法

yaml_tag(url) 点击切换源代码
# File psych/lib/psych/core_ext.rb, line 3
def self.yaml_tag url
  Psych.add_tag(url, self)
end

公共实例方法

to_yaml(options = {}) 点击切换源代码

将对象转换为 YAML。有关可用 options 的更多信息,请参阅 Psych.dump

# File psych/lib/psych/core_ext.rb, line 12
def to_yaml options = {}
  Psych.dump self, options
end