Class: Merb::Rack::ThinTurbo
- Defined in:
- lib/merb-core/rack/adapter/thin_turbo.rb
Class Method Summary collapse
-
.start(opts = {}) ⇒ Object
Parameters opts<Hash>:: Options for Thin Turbo (see below).
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 |