Sha256: 0af8aebb8c8c14d004ea8848cb0354157b34a048cc1dbf248f643b4cf57cf44d
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. require 'webrick' require 'rack/handler/webrick' module Ramaze module Adapter # Our WEBrick adapter acts as wrapper for the Rack::Handler::WEBrick. class WEBrick < Base class << self # start server on given host and port, see below for possible options. def run_server host, port, options = {} options = { :Port => port, :BindAddress => host, :Logger => Log, :AccessLog => [ [Log, ::WEBrick::AccessLog::COMMON_LOG_FORMAT], [Log, ::WEBrick::AccessLog::REFERER_LOG_FORMAT] ] }.merge(options) server = ::WEBrick::HTTPServer.new(options) server.mount("/", ::Rack::Handler::WEBrick, self) thread = Thread.new(server) do |adapter| Thread.current[:adapter] = adapter adapter.start end end end end end end # Extending on WEBrick module module WEBrick # Extending on HTTPServlet module HTTPServlet # Extending on ProcHandler # # We alias PUT to GET and DELETE to GET so WEBrick handles them as well. class ProcHandler alias do_PUT do_GET alias do_DELETE do_GET end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
clivecrous-ramaze-0.3.9.5 | lib/ramaze/adapter/webrick.rb |
ramaze-0.3.9.1 | lib/ramaze/adapter/webrick.rb |