Method: Peck::Notifiers::Base.use

Defined in:
lib/peck/notifiers/base.rb

.useObject



27
28
29
30
31
32
33
34
# File 'lib/peck/notifiers/base.rb', line 27

def self.use
  @instance ||= begin
    notifier = new
    notifier.install_at_exit
    Peck.delegates << notifier
    notifier
  end
end