Class: Rack::Handler::Thin
- Inherits:
-
Object
- Object
- Rack::Handler::Thin
- Defined in:
- lib/rack/handler/thin.rb
Class Method Summary collapse
Class Method Details
.run(app, options = {}) {|server| ... } ⇒ Object
8 9 10 11 12 13 14 |
# File 'lib/rack/handler/thin.rb', line 8 def self.run(app, ={}) server = ::Thin::Server.new([:Host] || '0.0.0.0', [:Port] || 8080, app) yield server if block_given? server.start end |