Skip to content

Instantly share code, notes, and snippets.

@manveru
Created February 13, 2012 16:36
Show Gist options
  • Save manveru/1818041 to your computer and use it in GitHub Desktop.
Save manveru/1818041 to your computer and use it in GitHub Desktop.
require 'rack'
trap(:INT){ Rack::Handler::WEBrick.shutdown }
Rack::Handler::WEBrick.run(lambda{|env|
[200, {'Content-Type' => 'text/plain'}, [`fortune`]]
}, Port: 7000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment