class Gem::NoAliasYAMLTree
公共类方法
公共实例方法
源码
# File lib/rubygems/psych_tree.rb, line 22 def register(target, obj) end
禁用此操作,以便没有锚点
源码
# File lib/rubygems/psych_tree.rb, line 17 def visit_Hash(o) super(o.compact) end
源码
# File lib/rubygems/psych_tree.rb, line 10 def visit_String(str) return super unless str == "=" # or whatever you want quote = Psych::Nodes::Scalar::SINGLE_QUOTED @emitter.scalar str, nil, nil, false, true, quote end
私有实例方法
源码
# File lib/rubygems/psych_tree.rb, line 26 def format_time(time) if time.utc? time.strftime("%Y-%m-%d %H:%M:%S.%9N Z") else time.strftime("%Y-%m-%d %H:%M:%S.%9N %:z") end end
这是从 1.9.3 中的 yaml_tree 移植过来的