class Guard::Terminal

def clear

def clear
  cmd = Gem.win_platform? ? "cls" : "printf '\33c\e[3J';"
  exit_code, _, stderr = Shellany::Sheller.system(cmd)
  fail Errno::ENOENT, stderr unless exit_code == 0
end