Method: Payload::RackContainer#call

Defined in:
lib/payload/rack_container.rb

#call(env) ⇒ Object

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.



18
19
20
21
# File 'lib/payload/rack_container.rb', line 18

def call(env)
  env[:dependencies] = @loader.call.service(:rack_env) { |container| env }
  @app.call(env)
end