Skip to content

Instantly share code, notes, and snippets.

@codespore
Created February 2, 2012 02:08
Show Gist options
  • Select an option

  • Save codespore/1720926 to your computer and use it in GitHub Desktop.

Select an option

Save codespore/1720926 to your computer and use it in GitHub Desktop.
Simples Rack App
class SimpleRackApp
def call(env)
[200, {'Content-Type' => 'text/plain'}, ["Hello World!"]]
end
end
run SimpleRackApp.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment