[Source]
# File webrick/httpservlet/prochandler.rb, line 21 def initialize(proc) @proc = proc end
# File webrick/httpservlet/prochandler.rb, line 25 def do_GET(request, response) @proc.call(request, response) end
Alias for do_GET
# File webrick/httpservlet/prochandler.rb, line 17 def get_instance(server, *options) self end
[Validate]