class Travis::Tools::Notification::Growl

def available?

def available?
  System.has? 'growlnotify' and System.running? 'Growl'
end

def notify(title, body)

def notify(title, body)
  system 'growlnotify', '-n', 'Travis', '--image', ICON, '-m', body, title
end