Method: Honeybadger::Agent#registry
- Defined in:
- lib/honeybadger/agent.rb
#registry ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
449 450 451 452 453 454 |
# File 'lib/honeybadger/agent.rb', line 449 def registry return @registry if defined?(@registry) @registry = Honeybadger::Registry.new.tap do |r| collect(Honeybadger::RegistryExecution.new(r, config, {})) end end |