Object
# File lib/guard/terminal.rb, line 6 def clear cmd = Gem.win_platform? ? "cls" : "printf '\333cc\e[3J';" exit_code, _, stderr = Shellany::Sheller.system(cmd) fail Errno::ENOENT, stderr unless exit_code == 0 end