Skip to content

Instantly share code, notes, and snippets.

@calavera
Created October 21, 2010 21:20
Show Gist options
  • Save calavera/639388 to your computer and use it in GitHub Desktop.
Save calavera/639388 to your computer and use it in GitHub Desktop.
require "rubygems"
require "rack"
require 'bundler/setup'
app = lambda { |env| [200, { 'Content-Type' => 'text/html' }, 'Hello World']
}
run app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment