class ChefCLI::CLI

def handle_options

If no subcommand is given, then this class is handling the CLI request.
def handle_options
  parse_options(argv)
  if config[:version]
    show_version
  else
    show_help
  end
  exit 0
end