Skip to content

Instantly share code, notes, and snippets.

@lucasprag
Created September 16, 2017 16:12
Show Gist options
  • Save lucasprag/c286ce8232ab165f09897bfbc4f85a05 to your computer and use it in GitHub Desktop.
Save lucasprag/c286ce8232ab165f09897bfbc4f85a05 to your computer and use it in GitHub Desktop.
class HelloHeader
def initialize(app)
@app = app
end
def call(env)
status, headers, body = @app.call(env)
headers['Hello'] = 'World'
[status, headers, body]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment