Class: Honeybadger::Plugin::Execution Private

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/honeybadger/plugin.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Constructor Details

#initialize(config, &block) ⇒ Execution

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.

Returns a new instance of Execution.



99
100
101
102
# File 'lib/honeybadger/plugin.rb', line 99

def initialize(config, &block)
  @config = config
  @block = block
end

Instance Method Details

#callObject

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.



104
105
106
# File 'lib/honeybadger/plugin.rb', line 104

def call
  instance_eval(&block)
end