%w(failed notify pending success).each do |type| require File.expand_path("../terminal_notifier/guard/#{type}", __FILE__) end module TerminalNotifier module Guard include TerminalNotifier::Guard::Notify include TerminalNotifier::Guard::Success include TerminalNotifier::Guard::Failed include TerminalNotifier::Guard::Pending # Returns wether or not the current platform is Mac OS X 10.8, or higher. def self.available? if @available.nil? @available = `uname`.strip == 'Darwin' && `sw_vers -productVersion`.strip >= '10.8' end @available end def self.execute(verbose, options) if available? case options[:type] when :failed bin_path = TerminalNotifier::Guard::Failed::BIN_PATH when :success bin_path = TerminalNotifier::Guard::Success::BIN_PATH when :pending bin_path = TerminalNotifier::Guard::Pending::BIN_PATH else bin_path = TerminalNotifier::Guard::Notify::BIN_PATH end options.delete(:type) if options[:type] command = [bin_path, *options.map { |k,v| ["-#{k}", v.to_s] }.flatten] if RUBY_VERSION < '1.9' require 'shellwords' command = Shellwords.shelljoin(command) end result = '' IO.popen(command) do |stdout| output = stdout.read STDOUT.print output if verbose result << output end result else raise "terminal-notifier is only supported on Mac OS X 10.8, or higher." end end # Sends a User Notification and returns wether or not it was a success. # # The available options are `:title`, `:group`, `:activate`, `:open`, and # `:execute`. For a description of each option see: # # https://github.com/alloy/terminal-notifier/blob/master/README.markdown # # Examples are: # # TerminalNotifier.notify('Hello World') # TerminalNotifier.notify('Hello World', :title => 'Ruby') # TerminalNotifier.notify('Hello World', :group => Process.pid) # TerminalNotifier.notify('Hello World', :activate => 'com.apple.Safari') # TerminalNotifier.notify('Hello World', :open => 'http://twitter.com/alloy') # TerminalNotifier.notify('Hello World', :execute => 'say "OMG"') # # Raises if not supported on the current platform. def notify(message, options = {}, verbose = false) TerminalNotifier::Guard.execute(verbose, options.merge(:message => message)) $?.success? end module_function :notify def failed(message, options = {}, verbose = false) TerminalNotifier::Guard.execute(verbose, options.merge(:message => message, :type => :failed)) $?.success? end module_function :failed def pending(message, options = {}, verbose = false) TerminalNotifier::Guard.execute(verbose, options.merge(:message => message, :type => :pending)) $?.success? end module_function :pending def success(message, options = {}, verbose = false) TerminalNotifier::Guard.execute(verbose, options.merge(:message => message, :type => :success)) $?.success? end module_function :success # Removes a notification that was previously sent with the specified # ‘group’ ID, if one exists. # # If no ‘group’ ID is given, all notifications are removed. def remove(group = 'ALL', verbose = false) TerminalNotifier::Guard.execute(verbose, :remove => group) $?.success? end module_function :remove LIST_FIELDS = [:group, :title, :subtitle, :message, :delivered_at].freeze # If a ‘group’ ID is given, and a notification for that group exists, # returns a hash with details about the notification. # # If no ‘group’ ID is given, an array of hashes describing all # notifications. # # If no information is available this will return `nil`. def list(group = 'ALL', verbose = false) output = TerminalNotifier::Guard.execute(verbose, :list => group) return if output.strip.empty? require 'time' notifications = output.split("\n")[1..-1].map do |line| LIST_FIELDS.zip(line.split("\t")).inject({}) do |hash, (key, value)| hash[key] = key == :delivered_at ? Time.parse(value) : (value unless value == '(null)') hash end end group == 'ALL' ? notifications : notifications.first end module_function :list end end