mirror of
https://github.com/ruby/ruby.git
synced 2025-09-20 02:53:57 +02:00

* lib/rubygems: Update to RubyGems 1.8.22 plus r33517 and r35337 which were ported to the rubygems git repository. See https://github.com/rubygems/rubygems/blob/1.8/History.txt for changes since 1.8.11. * test/rubygems: ditto. * lib/rubygems/version.rb: Fixed init_with warning by calling into yaml_initialize (for syck) from psych's init_with git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@35402 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
54 lines
1.3 KiB
Ruby
54 lines
1.3 KiB
Ruby
module Gem
|
|
if defined? ::Psych::Visitors
|
|
class NoAliasYAMLTree < Psych::Visitors::YAMLTree
|
|
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
|
|
|
|
# Noop this out so there are no anchors
|
|
def register(target, obj)
|
|
end
|
|
|
|
# This is ported over from the yaml_tree in 1.9.3
|
|
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
|
|
|
|
private :format_time
|
|
end
|
|
end
|
|
end
|
|
module Gem
|
|
if defined? ::Psych::Visitors
|
|
class NoAliasYAMLTree < Psych::Visitors::YAMLTree
|
|
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
|
|
|
|
# Noop this out so there are no anchors
|
|
def register(target, obj)
|
|
end
|
|
|
|
# This is ported over from the yaml_tree in 1.9.3
|
|
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
|
|
|
|
private :format_time
|
|
end
|
|
end
|
|
end
|