From c110ade0d235391c2fbfe9291250f744b735a1a8 Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Thu, 11 Feb 2021 18:30:58 +0100 Subject: [ruby/psych] Fix custom marshalization with symbolize_names: true https://github.com/ruby/psych/commit/ee26f26ab5 --- ext/psych/lib/psych/visitors/to_ruby.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext') diff --git a/ext/psych/lib/psych/visitors/to_ruby.rb b/ext/psych/lib/psych/visitors/to_ruby.rb index a10018812b..4d98850f75 100644 --- a/ext/psych/lib/psych/visitors/to_ruby.rb +++ b/ext/psych/lib/psych/visitors/to_ruby.rb @@ -339,7 +339,7 @@ module Psych list end - def revive_hash hash, o + def revive_hash hash, o, tagged= false o.children.each_slice(2) { |k,v| key = accept(k) val = accept(v) @@ -366,7 +366,7 @@ module Psych hash[key] = val end else - if @symbolize_names + if !tagged && @symbolize_names key = key.to_sym elsif !@freeze key = deduplicate(key) @@ -404,7 +404,7 @@ module Psych def revive klass, node s = register(node, klass.allocate) - init_with(s, revive_hash({}, node), node) + init_with(s, revive_hash({}, node, true), node) end def init_with o, h, node -- cgit v1.2.3