class Travis::Tools::Notification::Growl

def available?

def available?
  system "which #{@command} >/dev/null 2>/dev/null" unless System.windows?
end

def initialize

def initialize
  @command = "growlnotify"
end

def notify(title, body)

def notify(title, body)
  system @command, '-n', 'Travis', '-m', body, title
end