Class: RuntimeerrorNotifier::Tracker
- Inherits:
-
Object
- Object
- RuntimeerrorNotifier::Tracker
- Defined in:
- lib/runtimeerror_notifier/tracker.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, options = {}) ⇒ Tracker
constructor
A new instance of Tracker.
Constructor Details
#initialize(app, options = {}) ⇒ Tracker
Returns a new instance of Tracker.
3 4 5 |
# File 'lib/runtimeerror_notifier/tracker.rb', line 3 def initialize(app, ={}) @app, = app, end |
Instance Method Details
#call(env) ⇒ Object
7 8 9 10 11 12 |
# File 'lib/runtimeerror_notifier/tracker.rb', line 7 def call(env) @app.call(env) rescue Exception => ex RuntimeerrorNotifier::Notifier.notification(env, ex, ) raise ex end |