Skip to content

Instantly share code, notes, and snippets.

@xxx
Created April 25, 2012 21:41
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save xxx/02c1cc8ce504033d61bf to your computer and use it in GitHub Desktop.
Save xxx/02c1cc8ce504033d61bf to your computer and use it in GitHub Desktop.
class HeaderDelete
def initialize(app, options = {})
@app, @options = app, options
end
def call(env)
r = @app.call(env)
#[status, headers, response] = r
r[1].delete "X-Runtime"
r
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment