Skip to content

Instantly share code, notes, and snippets.

@jzting
Created May 13, 2009 03:06
Show Gist options
  • Save jzting/110847 to your computer and use it in GitHub Desktop.
Save jzting/110847 to your computer and use it in GitHub Desktop.
class BasicRack
def call(env)
body = "hello from a class"
[200, {'Content-Length'=> body.size.to_s, 'Content-Type'=>'text/html'}, [body]]
end
end
run BasicRack.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment