# File lib/rack/contrib/evil.rb, line 8 def call(env) catch(:response) { @app.call(env) } end
Lets you return a response to the client immediately from anywhere ( M V or C ) in the code.
# File lib/rack/contrib/evil.rb, line 4 def initialize(app) @app = app end