class Puma::Configuration::ConfigMiddleware
Injects the Configuration object into the env
def call(env)
def call(env) env[Const::PUMA_CONFIG] = @config @app.call(env) end
def initialize(config, app)
def initialize(config, app) @config = config @app = app end