Skip to content

Instantly share code, notes, and snippets.

@pedroteixeira
Created July 26, 2012 23:07
Show Gist options
  • Save pedroteixeira/3185156 to your computer and use it in GitHub Desktop.
Save pedroteixeira/3185156 to your computer and use it in GitHub Desktop.
psych patch jruby 1.6.7
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
@pedroteixeira
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment