summaryrefslogtreecommitdiff
path: root/trunk/sample/webrick/hello.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/sample/webrick/hello.cgi')
-rw-r--r--trunk/sample/webrick/hello.cgi11
1 files changed, 0 insertions, 11 deletions
diff --git a/trunk/sample/webrick/hello.cgi b/trunk/sample/webrick/hello.cgi
deleted file mode 100644
index 35d2240df0..0000000000
--- a/trunk/sample/webrick/hello.cgi
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env ruby
-require "webrick/cgi"
-
-class HelloCGI < WEBrick::CGI
- def do_GET(req, res)
- res["content-type"] = "text/plain"
- res.body = "Hello, world.\n"
- end
-end
-
-HelloCGI.new.start