Module: Notifier

Extended by:
Notifier
Included in:
Notifier
Defined in:
lib/notifier.rb,
lib/notifier/hud.rb,
lib/notifier/snarl.rb,
lib/notifier/kdialog.rb,
lib/notifier/knotify.rb,
lib/notifier/osd_cat.rb,
lib/notifier/placebo.rb,
lib/notifier/version.rb,
lib/notifier/notify_send.rb,
lib/notifier/terminal_notifier.rb

Defined Under Namespace

Modules: Hud, Kdialog, Knotify, NotifySend, OsdCat, Placebo, Snarl, TerminalNotifier, Version

Class Attribute Summary collapse

Instance Method Summary collapse

Class Attribute Details

.default_notifierObject

Returns the value of attribute default_notifier.



25
26
27
# File 'lib/notifier.rb', line 25

def default_notifier
  @default_notifier
end

Instance Method Details

#from_name(name) ⇒ Object



50
51
52
53
54
# File 'lib/notifier.rb', line 50

def from_name(name)
  const_get(classify(name.to_s))
rescue StandardError
  nil
end

#notifierObject



32
33
34
# File 'lib/notifier.rb', line 32

def notifier
  supported_notifier_from_name(default_notifier) || supported_notifiers.first
end

#notifiersObject



40
41
42
43
44
# File 'lib/notifier.rb', line 40

def notifiers
  constants.filter_map do |name|
    const_get(name) unless skip_constants.include?(name.to_s)
  end + [Placebo]
end

#notify(options) ⇒ Object



36
37
38
# File 'lib/notifier.rb', line 36

def notify(options)
  notifier.notify(options)
end

#os?(regex) ⇒ Boolean

Returns:

  • (Boolean)


61
62
63
# File 'lib/notifier.rb', line 61

def os?(regex)
  RUBY_PLATFORM =~ regex || RbConfig::CONFIG["host_os"] =~ regex
end

#skip_constantsObject



28
29
30
# File 'lib/notifier.rb', line 28

def skip_constants
  @skip_constants ||= %w[Placebo Adapters Version]
end

#supported_notifier_from_name(name) ⇒ Object



56
57
58
59
# File 'lib/notifier.rb', line 56

def supported_notifier_from_name(name)
  notifier = from_name(name)
  notifier&.supported? ? notifier : nil
end

#supported_notifiersObject



46
47
48
# File 'lib/notifier.rb', line 46

def supported_notifiers
  notifiers.select(&:supported?)
end