Sha256: 7b05e48c485b5ebcaa7cff176b7bdab2c3c4113077e006fcae8dd9528d2f62f0
Contents?: true
Size: 608 Bytes
Versions: 17
Compression:
Stored size: 608 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze Global.test_connections = false module Adapter # Our Lsws adapter acts as wrapper for the Rack::Handler::LSWS. class Lsws < Base # start Lsws 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 def self.startup(host = nil, port = nil) Thread.new{ Rack::Handler::LSWS.run(self) } end end end end
Version data entries
17 entries across 17 versions & 4 rubygems