Class: Dragonfly::Middleware
Instance Method Summary (collapse)
- - (Object) call(env)
-
- (Middleware) initialize(app, dragonfly_app_name, deprecated_arg = nil)
constructor
A new instance of Middleware.
Constructor Details
- (Middleware) initialize(app, dragonfly_app_name, deprecated_arg = nil)
Returns a new instance of Middleware
4 5 6 7 8 |
# File 'lib/dragonfly/middleware.rb', line 4 def initialize(app, dragonfly_app_name, deprecated_arg=nil) raise ArgumentError, "mounting Dragonfly::Middleware with a mount point is deprecated - just use Dragonfly::Middleware, #{dragonfly_app_name.inspect}" if deprecated_arg @app = app @dragonfly_app_name = dragonfly_app_name end |
Instance Method Details
- (Object) call(env)
10 11 12 13 14 15 16 17 |
# File 'lib/dragonfly/middleware.rb', line 10 def call(env) response = Dragonfly[@dragonfly_app_name].call(env) if response[1]['X-Cascade'] == 'pass' @app.call(env) else response end end |