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

Options for Thin Turbo (see below).

Options (opts)

:host:: The hostname that Thin Turbo should serve. :port:: The port Thin Turbo should bind to. :socket>:: The socket number that thin should bind to. :socket_file>:: The socket file that thin should attach to. :app>:: 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