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