Sha256: 3864f5ca1b8c9baa5cfa6753e5987f9af94d80c388c94688dd34e946f271230b
Contents?: true
Size: 278 Bytes
Versions: 35
Compression:
Stored size: 278 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
35 entries across 35 versions & 8 rubygems