Class: Rack::ShowExceptions

Inherits:
Object show all
Defined in:
lib/kiss/rack/show_exceptions.rb

Overview

Deprecated. To be removed in Kiss 1.1. Functionality moved to Kiss#initialize (lib/kiss.rb).

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ ShowExceptions

Returns a new instance of ShowExceptions.



6
7
8
# File 'lib/kiss/rack/show_exceptions.rb', line 6

def initialize(app)
  @_app = app
end

Instance Method Details

#call(env) ⇒ Object



10
11
12
# File 'lib/kiss/rack/show_exceptions.rb', line 10

def call(env)
  @_app.call(env)
end