Skip to content

Instantly share code, notes, and snippets.

@ezmobius
Created May 21, 2011 06:22
Show Gist options
  • Save ezmobius/984305 to your computer and use it in GitHub Desktop.
Save ezmobius/984305 to your computer and use it in GitHub Desktop.
require 'pp'
app = Proc.new do |env|
[200, {'Content-Type' => 'text/html'}, ["<html><body><h1>hello</h1><pre>#{env.pretty_inspect}</pre></body></html>"]]
end
map "/" do
run app
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment