class PryRescue::Rack
A Rack middleware that wraps each web request in Pry::rescue.
def call(env)
-
env
(Rack::Env
) --
def call(env) Pry::rescue{ @app.call(env) } end
def initialize(app)
-
app
(#call
) --
def initialize(app) @app = app end