ruby/lib/rubygems/psych_additions.rb
nagachika 589da706be * lib/rubygems: Update to RubyGems 2.0.6. [ruby-core:56160]
[Backport #8682]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@42170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-07-25 15:42:22 +00:00

9 lines
249 B
Ruby

# This exists just to satify bugs in marshal'd gemspecs that
# contain a reference to YAML::PrivateType. We prune these out
# in Specification._load, but if we don't have the constant, Marshal
# blows up.
module Psych
class PrivateType
end
end