Skip to content

Instantly share code, notes, and snippets.

@deepfryed
Created August 5, 2010 01:59
Show Gist options
  • Save deepfryed/509104 to your computer and use it in GitHub Desktop.
Save deepfryed/509104 to your computer and use it in GitHub Desktop.
module Rack
class InputEncoder
def initialize app
@app = app
end
def call env
env["rack.input"] = IO.new(env["rack.input"])
@app.call(env)
end
class IO < DelegateClass(IO)
def initialize io
@io = io
super(@io)
end
def read *args
@io.read(*args).force_encoding(Encoding.default_internal)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment