diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-03-12 13:05:19 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-03-12 13:05:19 +0000 |
commit | 37bff4c0154b57b35a3194a9b31a9422496b955b (patch) | |
tree | 61592a6bb9d1d9fea378a6e4efa8fdf7d5525b8a /vendor/gems/rack-1.1.0/lib/rack/config.rb | |
parent | 8b49dc894066e452232cabd09333895487f86986 (diff) | |
parent | 8acea24f98268fbb9b73b66b9e98a1788a3b30ac (diff) |
Merge branch 'merged-bundler' into develop
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 |