1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/lib/middleman/rack/downstream.rb

9 lines
155 B
Ruby
Raw Normal View History

2010-01-20 18:22:40 -05:00
class Middleman::Rack::Downstream
def initialize(app, options={})
@app = app
end
2009-11-30 14:32:02 -05:00
2010-01-20 18:22:40 -05:00
def call(env)
env["DOWNSTREAM"] || @app.call(env)
2009-11-30 14:32:02 -05:00
end
end