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

Version Path
font-awesome-rails-3.1.1.1 vendor/ruby/2.0.0/gems/rack-1.4.5/lib/rack/config.rb
font-awesome-rails-3.1.1.1 vendor/ruby/1.9.1/gems/rack-1.4.5/lib/rack/config.rb
challah-1.0.0.beta3 vendor/bundle/gems/rack-1.4.5/lib/rack/config.rb
fc-webicons-0.0.4 vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/config.rb
challah-1.0.0.beta2 vendor/bundle/gems/rack-1.4.5/lib/rack/config.rb
challah-1.0.0.beta vendor/bundle/gems/rack-1.4.3/lib/rack/config.rb
challah-1.0.0.beta vendor/bundle/gems/rack-1.4.5/lib/rack/config.rb
fc-webicons-0.0.3 vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/config.rb
fc-webicons-0.0.2 vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/config.rb
fc-webicons-0.0.1 vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/config.rb
active_mailer-0.0.5 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/config.rb
active_mailer-0.0.4 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/config.rb
active_mailer-0.0.3 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/config.rb
graphael-on-rails-0.5.1 vendor/bundle/gems/rack-1.4.5/lib/rack/config.rb
graphael-on-rails-0.0.1 vendor/bundle/gems/rack-1.4.5/lib/rack/config.rb
challah-0.9.1.beta.3 vendor/bundle/gems/rack-1.4.3/lib/rack/config.rb
rack-1.4.5 lib/rack/config.rb
rack-1.3.10 lib/rack/config.rb
rack-1.2.8 lib/rack/config.rb
rack-1.1.6 lib/rack/config.rb