2 # prochandler.rb -- ProcHandler Class
4 # Author: IPR -- Internet Programming with Ruby -- writers
5 # Copyright (c) 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
6 # Copyright (c) 2002 Internet Programming with Ruby writers. All rights
9 # $IPR: prochandler.rb,v 1.7 2002/09/21 12:23:42 gotoyuzo Exp $
11 require 'webrick/httpservlet/abstract.rb'
16 class ProcHandler < AbstractServlet
17 def get_instance(server, *options)
25 def do_GET(request, response)
26 @proc.call(request, response)