Skip to content

Instantly share code, notes, and snippets.

@codesword
Created June 5, 2016 16:03
Show Gist options
  • Save codesword/d0cdebb0df545bdd21ec43291c55d563 to your computer and use it in GitHub Desktop.
Save codesword/d0cdebb0df545bdd21ec43291c55d563 to your computer and use it in GitHub Desktop.
require "rack"
class MethodOverrideMiddleware
def initialize(app)
@app = app
end
def call(env)
request = Rack::Request.new(env)
if request.params["method"]
env["REQUEST_METHOD"] = request.params["method"].upcase
end
@app.call(env)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment