How can I make ruby to_yaml method to store utf8 strings with original signs but not escape sequence?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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:
|
|||||||
|
Ruby ships with two YAML engines: syck and psych. Syck is old and not maintained, but it is default in 1.9.2, so one needs to switch to psych. Psych dumps UTF-8 strings in UTF-8. |
||||
|
Checkout Ya2Yaml at RubyForge. |
|||||
|
|
For Ruby 1.9.3+, this is not a problem: the default YAML engine is Psych, which supports UTF-8 by default. For Ruby 1.9.2- you need to install the
Alternatively, set the
|
||||
|
|