Class: Merb::Rack::ThinTurbo

Inherits:
Thin show all
Defined in:
lib/merb-core/rack/adapter/thin_turbo.rb

Class Method Summary collapse

Class Method Details

.start(opts = {}) ⇒ Object

Parameters

opts<Hash>

Options for Thin Turbo (see below).

Options (opts)

:host<String>

The hostname that Thin Turbo should serve.

:port<Fixnum>

The port Thin Turbo should bind to.

:socket<Fixnum>>

The socket number that thin should bind to.

:socket_file<String>>

The socket file that thin should attach to.

:app<String>>

The application name.



19
20
21
# File 'lib/merb-core/rack/adapter/thin_turbo.rb', line 19

def self.start(opts={})
  super(opts.merge(:backend => ::Thin::Backends::Turbo))
end