Injects the Configuration object into the env
# File lib/puma/configuration.rb, line 218 def initialize(config, app) @config = config @app = app end
# File lib/puma/configuration.rb, line 223 def call(env) env[Const::PUMA_CONFIG] = @config @app.call(env) end