2007-04-29 cgi w/Webrick require 'webrick/cgi' class TestCGI < WEBrick::CGI def do_GET(req, res) res.body = "TEST" end end TestCGI.new.start