mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
249 B
Ruby
10 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
|