Skip to content

Instantly share code, notes, and snippets.

@javiervidal
Created April 6, 2010 15:33
Show Gist options
  • Save javiervidal/357723 to your computer and use it in GitHub Desktop.
Save javiervidal/357723 to your computer and use it in GitHub Desktop.
basic rack app
class LightningTalk
def initialize(app)
@app = app
end
def call(env)
# request
status, headers, response = @app.call(env)
# response
[status, headers, response]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment