Class: Honeybadger::Backend::Null Private
- Defined in:
- lib/honeybadger/backend/null.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.
Defined Under Namespace
Classes: StubbedResponse
Instance Method Summary collapse
- #check_in(id) ⇒ Object private
- #event(payload) ⇒ Object private
-
#initialize(*args) ⇒ Null
constructor
private
A new instance of Null.
- #notify(feature, payload) ⇒ Object private
Methods inherited from Base
Constructor Details
#initialize(*args) ⇒ Null
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 Null.
16 17 18 |
# File 'lib/honeybadger/backend/null.rb', line 16 def initialize(*args) super end |
Instance Method Details
#check_in(id) ⇒ 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.
24 25 26 |
# File 'lib/honeybadger/backend/null.rb', line 24 def check_in(id) StubbedResponse.new end |
#event(payload) ⇒ 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.
28 29 30 |
# File 'lib/honeybadger/backend/null.rb', line 28 def event(payload) StubbedResponse.new end |
#notify(feature, payload) ⇒ 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.
20 21 22 |
# File 'lib/honeybadger/backend/null.rb', line 20 def notify(feature, payload) StubbedResponse.new end |