module Boxes # Class which encapsulates the command line handling. class Command < CLAide::Command require 'boxes/command/build' require 'boxes/command/env' self.abstract_command = true self.command = 'boxes' self.version = VERSION self.description = 'Toolkit for building Vagrantboxes, VM and cloud images.' end end