blob: e4706f8b598357df2004368584933edf0e749b48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env ruby
require "webrick/cgi"
require "webrick/https" # should load if it runs on HTTPS server
require "./demo-app"
class DemoCGI < WEBrick::CGI
include DemoApplication
end
config = { :NPH => false }
cgi = DemoCGI.new(config, "application/x-www-form-urlencoded")
cgi.start
|