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 "%s -m %p %p >/dev/null" [@command, title, body]
end