psych icon indicating copy to clipboard operation
psych copied to clipboard

Binary string sometimes encoded as Unicode

Open singpolyma-shopify opened this issue 6 years ago • 0 comments

For example:

x = "\x00\x01".b
x.encoding == Encoding::BINARY # => true
y = YAML::load(YAML::dump(x))
y.encoding == Encoding::BINARY # => false

singpolyma-shopify avatar Apr 24 '19 15:04 singpolyma-shopify