module Travis::Tools::System

def running?(app)

def running?(app)
  return false unless unix?
  system "pgrep -u $(whoami) #{app} >/dev/null"
end