Class: Rack::ShowDebug
Overview
Deprecated. To be removed in Kiss 1.1. Functionality moved to Kiss#initialize (lib/kiss.rb).
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ ShowDebug
constructor
A new instance of ShowDebug.
Constructor Details
#initialize(app) ⇒ ShowDebug
Returns a new instance of ShowDebug.
6 7 8 |
# File 'lib/kiss/rack/show_debug.rb', line 6 def initialize(app) @_app = app end |
Instance Method Details
#call(env) ⇒ Object
10 11 12 |
# File 'lib/kiss/rack/show_debug.rb', line 10 def call(env) @_app.call(env) end |