diff options
Diffstat (limited to 'vendor/gems/rack-1.1.0/lib/rack/config.rb')
-rw-r--r-- | vendor/gems/rack-1.1.0/lib/rack/config.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/gems/rack-1.1.0/lib/rack/config.rb b/vendor/gems/rack-1.1.0/lib/rack/config.rb deleted file mode 100644 index c6d446c0c..000000000 --- a/vendor/gems/rack-1.1.0/lib/rack/config.rb +++ /dev/null @@ -1,15 +0,0 @@ -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 |