Class: Rack::Mux::Server

Inherits:
Server
  • Object
show all
Defined in:
lib/rack/mux.rb

Overview

Instance Method Summary collapse

Constructor Details

#initialize(options = nil) ⇒ Server

Returns a new instance of Server.



68
69
70
71
# File 'lib/rack/mux.rb', line 68

def initialize(options = nil)
  @options = options
  @app = options[:app] if options && options[:app]
end