Guest User

Untitled

a guest
Feb 21st, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. module Merb
  2. module Rack
  3. class Middleware
  4.  
  5. def initialize(app)
  6. @app = app
  7. end
  8.  
  9. def deferred?(env)
  10. @app.deferred?(env)
  11. end
  12.  
  13. def call(env)
  14. @app.call(env)
  15. end
  16.  
  17. end
  18. end
  19. end
Add Comment
Please, Sign In to add comment