Skip to content

Instantly share code, notes, and snippets.

@evanpurkhiser
Created May 2, 2012 08:41
Show Gist options
  • Save evanpurkhiser/2575146 to your computer and use it in GitHub Desktop.
Save evanpurkhiser/2575146 to your computer and use it in GitHub Desktop.
Rack config
app = proc do |env|
[200, { "Content-Type" => "text/html" }, ["hello <b>world</b>"]]
end
run app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment