|
| 1 | +# :stopdoc: |
| 2 | + |
| 3 | +# Hack to handle syck's DefaultKey bug |
| 4 | +# |
| 5 | +# This file is always loaded AFTER either syck or psych are already |
| 6 | +# loaded. It then looks at what constants are available and creates |
| 7 | +# a consistent view on all rubys. |
| 8 | +# |
| 9 | +# All this is so that there is always a YAML::Syck::DefaultKey |
| 10 | +# class no matter if the full yaml library has loaded or not. |
| 11 | +# |
| 12 | + |
| 13 | +module YAML |
| 14 | + # In newer 1.9.2, there is a Syck toplevel constant instead of it |
| 15 | + # being underneith YAML. If so, reference it back under YAML as |
| 16 | + # well. |
| 17 | + if defined? ::Syck |
| 18 | + Syck = ::Syck |
| 19 | + |
| 20 | + # Otherwise, if there is no YAML::Syck, then we've got just psych |
| 21 | + # loaded, so lets define a stub for DefaultKey. |
| 22 | + elsif !defined? YAML::Syck |
| 23 | + module Syck |
| 24 | + class DefaultKey |
| 25 | + end |
| 26 | + end |
| 27 | + end |
| 28 | + |
| 29 | + # Now that we've got something that is always here, define #to_s |
| 30 | + # so when code tries to use this, it at least just shows up like it |
| 31 | + # should. |
| 32 | + module Syck |
| 33 | + class DefaultKey |
| 34 | + def to_s |
| 35 | + '=' |
| 36 | + end |
| 37 | + end |
| 38 | + end |
| 39 | +end |
| 40 | + |
| 41 | +# Sometime in the 1.9 dev cycle, the Syck constant was moved from under YAML |
| 42 | +# to be a toplevel constant. So gemspecs created under these versions of Syck |
| 43 | +# will have references to Syck::DefaultKey. |
| 44 | +# |
| 45 | +# So we need to be sure that we reference Syck at the toplevel too so that |
| 46 | +# we can always load these kind of gemspecs. |
| 47 | +# |
| 48 | +if !defined?(Syck) |
| 49 | + Syck = YAML::Syck |
| 50 | +end |
| 51 | + |
| 52 | +# Now that we've got Syck setup in all the right places, store |
| 53 | +# a reference to the DefaultKey class inside Gem. We do this so that |
| 54 | +# if later on YAML, etc are redefined, we've still got a consistent |
| 55 | +# place to find the DefaultKey class for comparison. |
| 56 | + |
| 57 | +module Gem |
| 58 | + SyckDefaultKey = YAML::Syck::DefaultKey |
| 59 | +end |
| 60 | + |
| 61 | +# :startdoc: |
0 commit comments