Class: Rack::Handler::Thick

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/handler/thick.rb

Class Method Summary collapse

Class Method Details

.run(app, options = {}) ⇒ Object



8
9
10
11
# File 'lib/rack/handler/thick.rb', line 8

def self.run(app, options={})
  options[:application] = app
  server = ::Thick::Server.create(options)
end