module OSXnotify

Public Class Methods

send(message, title, subtitle) click to toggle source
# File lib/argosnap/notifications/osxnotifications.rb, line 2
def self.send(message, title, subtitle)
  TerminalNotifier.notify(message, :title => title, :subtitle => subtitle) 
end