class Travis::Tools::Notification::LibNotify

def initialize

def initialize
  @command     = "notify-send"
  @expire_time = 10_000
end

def notify(title, body)

def notify(title, body)
  system @command, "--expire-time=#{@expire_time}", "-i", ICON, title, CGI.escapeHTML(body)
end