class Travis::Tools::Notification::OSX

def available?

def available?
  System.mac? and `sw_vers -productVersion`.strip >= '10.8'
end

def notify(title, body)

def notify(title, body)
  system BIN_PATH, '-message', body.to_s, '-title', title.to_s
end