Class: Honeybadger::Plugin::Execution Private
- Inherits:
-
Object
- Object
- Honeybadger::Plugin::Execution
- 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.
Direct Known Subclasses
Instance Method Summary collapse
- #call ⇒ Object private
-
#initialize(config, &block) ⇒ Execution
constructor
private
A new instance of Execution.
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.
115 116 117 118 |
# File 'lib/honeybadger/plugin.rb', line 115 def initialize(config, &block) @config = config @block = block end |
Instance Method Details
#call ⇒ 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.
120 121 122 |
# File 'lib/honeybadger/plugin.rb', line 120 def call instance_eval(&block) end |