Re-enable spec/library for full CI runs.
[rbx.git] / lib / webrick / httpservlet.rb
blobac7c022bd75e0625e30e47578042011a228f6be6
2 # httpservlet.rb -- HTTPServlet Utility File
4 # Author: IPR -- Internet Programming with Ruby -- writers
5 # Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
6 # Copyright (c) 2002 Internet Programming with Ruby writers. All rights
7 # reserved.
9 # $IPR: httpservlet.rb,v 1.21 2003/02/23 12:24:46 gotoyuzo Exp $
11 require 'webrick/httpservlet/abstract'
12 require 'webrick/httpservlet/filehandler'
13 require 'webrick/httpservlet/cgihandler'
14 require 'webrick/httpservlet/erbhandler'
15 require 'webrick/httpservlet/prochandler'
17 module WEBrick
18   module HTTPServlet
19     FileHandler.add_handler("cgi", CGIHandler)
20     FileHandler.add_handler("rhtml", ERBHandler)
21   end
22 end