vote up 0 vote down star

How can I make ruby to_yaml method to store utf8 strings with original signs but not escape sequence?

flag

63% accept rate

2 Answers

vote up 1 vote down

This is probably a really bad idea as I'm sure YAML has its reasons for encoding the characters as it does, but it doesn't seem too hard to undo:

require 'yaml'
require 'yaml/encoding'

text = "Ça va bien?"

puts text.to_yaml(:Encoding => :Utf8) # => --- "\xC3\x87a va bien?"
puts YAML.unescape(YAML.dump(text)) # => --- "Ça va bien?"
link|flag
vote up 2 vote down

Checkout Ya2Yaml at RubyForge.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.