class Boxes::Command::Env::Clean

Tidies up the working environment

Public Instance Methods

run() click to toggle source
# File lib/boxes/command/env.rb, line 42
def run
  working_dir = Boxes.config.working_dir

  FileUtils.rm_rf(working_dir) if working_dir.exist?
end