class Gem::NoAliasYAMLTree
Public Class Methods
Public Instance Methods
Source
# File lib/rubygems/psych_tree.rb, line 22 def register(target, obj) end
无操作,这样就不会有锚点
Source
# File lib/rubygems/psych_tree.rb, line 17 def visit_Hash(o) super(o.compact) end
Source
# 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
私有实例方法
Source
# 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
这是从 Ruby 1.9.3 中的 YAMLTree 实现移植过来的