Sha256: 4f24dbf2f72a9f7e14112587ba8a214c859fb859a448efc65ac56f71c17d97c2
Contents?: true
Size: 497 Bytes
Versions: 17
Compression:
Stored size: 497 Bytes
Contents
# Copyright (c) 2008 Jeremy Evans code@jeremyevans.net # All files in this distribution are subject to the terms of the Ruby license. require 'rack/handler/scgi' module Ramaze module Adapter # Our Scgi adapter acts as wrapper for the Rack::Handler::SCGI. class Scgi < Base # start SCGI in a new thread def self.startup(host, port) Thread.new do Rack::Handler::SCGI.run(self, :Host => host, :Port => port) end end end end end
Version data entries
17 entries across 17 versions & 4 rubygems