Class: Rack::LogExceptions
Overview
Deprecated; now does nothing. Functionality moved to Kiss#initialize (lib/kiss.rb).
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, path) ⇒ LogExceptions
constructor
A new instance of LogExceptions.
Constructor Details
#initialize(app, path) ⇒ LogExceptions
Returns a new instance of LogExceptions.
6 7 8 |
# File 'lib/kiss/rack/log_exceptions.rb', line 6 def initialize(app, path) @_app = app end |
Instance Method Details
#call(env) ⇒ Object
10 11 12 |
# File 'lib/kiss/rack/log_exceptions.rb', line 10 def call(env) @_app.call(env) end |