Created
July 26, 2012 23:07
-
-
Save pedroteixeira/3185156 to your computer and use it in GitHub Desktop.
psych patch jruby 1.6.7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Psych | |
class << self | |
alias_method :old_dump, :dump unless method_defined?(:old_dump) | |
def dump(o, io = nil, options = {}) | |
old_dump(o, io, options).force_encoding('utf-8') | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in JRuby 1.6.7 in 1.9 mode, YAML.encoding('é').dump.encoding => ASCII-8BIT which is not expected, and differs from UTF-8 from MRI.
This is really bad in Rails apps, because a YAML serialized atribute may be mixed with a normal UTF-8 attribute (with a special character) and results in a Incompatible Encoding Exception.