Method: Payload::RackContainer#initialize

Defined in:
lib/payload/rack_container.rb

#initialize(app, &loader) ⇒ RackContainer

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of RackContainer.


13
14
15
16
# File 'lib/payload/rack_container.rb', line 13

def initialize(app, &loader)
  @app = app
  @loader = loader
end