7 8 9 10 11 12 13 14 15
# File 'lib/code_kindly/utils/os.rb', line 7 def notify(message) return if terminal_notifier.nil? Command.run [ terminal_notifier, "-message \"#{message}\"", '-sound Submarine' ].join(' ') end
17 18 19
# File 'lib/code_kindly/utils/os.rb', line 17 def which(program) Command.run("which #{program}").result end