Sha256: c7ccda675ea3c567418c4d609b998eca75586c3f37ff349d9f2d5c9bf252c8e4
Contents?: true
Size: 345 Bytes
Versions: 49
Compression:
Stored size: 345 Bytes
Contents
module Mihari module Middleware class ErrorNotificationAdapter include Mixins::ErrorNotification def initialize(app) @app = app end def call(env) with_error_notification do status, headers, body = @app.call(env) [status, headers, body] end end end end end
Version data entries
49 entries across 49 versions & 1 rubygems