module Rack # Deprecated; now does nothing. # Functionality moved to Kiss#initialize (lib/kiss.rb). class ShowExceptions def initialize(app) @app = app end def call(env) @app.call(env) end end end