Skip to content

Instantly share code, notes, and snippets.

@hiroshi
Created July 4, 2010 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiroshi/463476 to your computer and use it in GitHub Desktop.
Save hiroshi/463476 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# config/initializers/rack_encoding_binary_fix.rb
# 2010-07-04: @hiroshi3110, hiroshi3110@gmail.com, http://github.com/hiroshi
# I wrote this for Rails 3 beta 4 / Ruby 1.9.2-pre3.
# This is a VERY nasty patch for work arounding rack's Encoding::BINARY (ASCII-8BIT) rack.input issue.
# I don't know the RIGHT solution about the issue, but I have to fix:
# Encoding::UndefinedConversionError ("\xE3" from ASCII-8BIT to UTF-8)
# Sometime in the future, I hope this is no use...
# References:
# wycats pointed at "Where it doesn’t work" in http://yehudakatz.com/2010/05/17/encodings-unabridged/
ActionDispatch::Http::Parameters.module_eval do
private
def normalize_parameters_with_force_encoding_to_utf8(value)
case value
when Hash, Array
else
value = value.force_encoding("UTF-8")
end
normalize_parameters_without_force_encoding_to_utf8(value)
end
alias_method_chain :normalize_parameters, :force_encoding_to_utf8
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment