Skip to content

Instantly share code, notes, and snippets.

@wyattdanger
Created December 15, 2011 16:10
Show Gist options
  • Save wyattdanger/1481660 to your computer and use it in GitHub Desktop.
Save wyattdanger/1481660 to your computer and use it in GitHub Desktop.
basic
class App
def call(env)
[
200,
{'Content-Type' => 'text/html'},
[ env['PATH_INFO'] ]
]
end
end
run App.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment