Method: Failbot#method_missing
- Defined in:
- lib/failbot/exit_hook.rb
#method_missing(method, *args, &block) ⇒ Object
Tap into any other method invocation on the Failbot module (especially report) and lazy load and configure everything the first time.
75 76 77 78 79 |
# File 'lib/failbot/exit_hook.rb', line 75 def method_missing(method, *args, &block) return super if @failbot_loaded require 'failbot' send(method, *args, &block) end |