Skip to content

Instantly share code, notes, and snippets.

@jlong
Created May 15, 2010 01:22
Show Gist options
  • Select an option

  • Save jlong/401910 to your computer and use it in GitHub Desktop.

Select an option

Save jlong/401910 to your computer and use it in GitHub Desktop.
require "rubygems"
require "rack"
require "rack/lobster"
app = Rack::Builder.new do
use Rack::ShowExceptions
run Rack::Lobster.new
end
webrick = Rack::Handler.get('webrick')
webrick.run app, :Port => 4000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment