class Travis::Tools::Notification::Growl
def available?
def available? System.has? @command and System.running? "Growl" end
def initialize
def initialize @command = "growlnotify" end
def notify(title, body)
def notify(title, body) system @command, '-n', 'Travis', '--image', ICON, '-m', body, title end