Class: Ramaze::Adapter::Cgi

Inherits:
Base show all
Defined in:
lib/ramaze/adapter/cgi.rb

Overview

Our CGI adapter acts as wrapper for the Rack::Handler::CGI.

Class Method Summary collapse

Methods inherited from Base

before_call, call, join, respond, shutdown, start

Class Method Details

.startup(host = nil, port = nil) ⇒ Object

start CGI in a new thread, host and port parameter are only taken to make it compatible with other adapters but have no influence and can be omitted



14
15
16
17
# File 'lib/ramaze/adapter/cgi.rb', line 14

def self.startup(host = nil, port = nil)
  Global.server=self
  Thread.new{ Rack::Handler::CGI.run(self) }
end