Sha256: 4bd3bb789dc4d675235a35833c09a647a40b57bc7a707c5111720796bad4e387
Contents?: true
Size: 277 Bytes
Versions: 204
Compression:
Stored size: 277 Bytes
Contents
module Rack # Rack::Config modifies the environment using the block given during # initialization. class Config def initialize(app, &block) @app = app @block = block end def call(env) @block.call(env) @app.call(env) end end end
Version data entries
204 entries across 177 versions & 32 rubygems