Class: ExceptionNotifier::CampfireNotifier

Inherits:
BaseNotifier show all
Defined in:
lib/exception_notifier/campfire_notifier.rb

Instance Attribute Summary collapse

Attributes inherited from BaseNotifier

#base_options

Instance Method Summary collapse

Methods inherited from BaseNotifier

#_post_callback, #_pre_callback, #send_notice

Constructor Details

#initialize(options) ⇒ CampfireNotifier

Returns a new instance of CampfireNotifier.



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/exception_notifier/campfire_notifier.rb', line 8

def initialize(options)
  super
  begin
    subdomain = options.delete(:subdomain)
    room_name = options.delete(:room_name)
    @campfire = Tinder::Campfire.new subdomain, options
    @room     = @campfire.find_room_by_name room_name
  rescue
    @campfire = @room = nil
  end
end

Instance Attribute Details

#roomObject

Returns the value of attribute room.



6
7
8
# File 'lib/exception_notifier/campfire_notifier.rb', line 6

def room
  @room
end

#subdomainObject

Returns the value of attribute subdomain.



4
5
6
# File 'lib/exception_notifier/campfire_notifier.rb', line 4

def subdomain
  @subdomain
end

#tokenObject

Returns the value of attribute token.



5
6
7
# File 'lib/exception_notifier/campfire_notifier.rb', line 5

def token
  @token
end

Instance Method Details

#call(exception, options = {}) ⇒ Object



20
21
22
23
24
25
26
27
28
# File 'lib/exception_notifier/campfire_notifier.rb', line 20

def call(exception, options={})
  if active?
    message = "A new exception occurred: '#{exception.message}'"
    message += " on '#{exception.backtrace.first}'" if exception.backtrace
    send_notice(exception, options, message) do |msg, _|
      @room.paste msg
    end
  end
end