Files
fn-serverless/hello-sinatra/bundle/ruby/2.2.0/gems/rack-1.6.4/lib/rack/config.rb
2015-07-22 00:01:54 -07:00

21 lines
379 B
Ruby

module Rack
# Rack::Config modifies the environment using the block given during
# initialization.
#
# Example:
# use Rack::Config do |env|
# env['my-key'] = 'some-value'
# end
class Config
def initialize(app, &block)
@app = app
@block = block
end
def call(env)
@block.call(env)
@app.call(env)
end
end
end