diff options
author | why <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-22 17:56:30 +0000 |
---|---|---|
committer | why <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-22 17:56:30 +0000 |
commit | 9bb41601890f6f224bdb6370476b9295a19598fc (patch) | |
tree | 0c3e7da63d97e8b40f2335da403170d5a2b7ad5d /lib/yaml.rb | |
parent | 3458bf43288ae4b76564e538f35e9c423ea4f620 (diff) | |
download | ruby-9bb41601890f6f224bdb6370476b9295a19598fc.tar.gz |
* lib/token.c: single- and double-quoted root-level fix.
* lib/yaml.rb (YAML::object_maker): can create object attributes (such as
found in Exception class)
* lib/yaml/rubytypes.rb: roundtripping of Exception and subclasses.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/yaml.rb')
-rw-r--r-- | lib/yaml.rb | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/lib/yaml.rb b/lib/yaml.rb index a8bba691f0..161979bb52 100644 --- a/lib/yaml.rb +++ b/lib/yaml.rb @@ -124,13 +124,20 @@ module YAML # # Allocate blank object # - def YAML.object_maker( obj_class, val ) + def YAML.object_maker( obj_class, val, is_attr = false ) if Hash === val name = obj_class.name - o = ::Marshal.load( sprintf( "\004\006o:%c%s\000", name.length + 5, name )) - val.each_pair { |k,v| - o.instance_eval "@#{k} = v" - } + ostr = sprintf( "\004\006o:%c%s\000", name.length + 5, name ) + if is_attr + ostr[ -1, 1 ] = Marshal.dump( val ).sub( /^[^{]+\{/, '' ) + p ostr + end + o = ::Marshal.load( ostr ) + unless is_attr + val.each_pair { |k,v| + o.instance_eval "@#{k} = v" + } + end o else raise YAML::Error, "Invalid object explicitly tagged !ruby/Object: " + val.inspect |