We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5eb96 commit fdb517dCopy full SHA for fdb517d
rakelib/string_prep_tables_generator.rb
@@ -292,6 +292,12 @@ def parse_rfc_text(rfc3454_text)
292
.to_h.compact
293
.transform_values {|t| t.first.size == 2 ? t.to_h : t }
294
tables["titles"] = titles
295
+
296
+ # See https://github.com/ruby/json/issues/870
297
+ if RUBY_ENGINE == "jruby"
298
+ tables["titles"].transform_values! { _1.dump.undump }
299
+ end
300
301
tables
302
end
303
0 commit comments