Class: Honeybadger::Backend::Null Private

Inherits:
Base
  • Object
show all
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.

Direct Known Subclasses

Debug, Test

Defined Under Namespace

Classes: StubbedResponse

Instance Method Summary collapse

Methods inherited from Base

#track_deployment

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