# frozen_string_literal: true require "thor" require_relative "audit" module Neetob class CLI module Code class Commands < Thor desc "audit", "Audit code base of neeto products to ensure they are properly maintained." option :apps, type: :array, aliases: "-a", required: true, desc: "Neeto app names. Can be matched using the '*' wildcard. Example: \"neeto*\" \"neeto-cal-web\", also providing \"all\" as value matches all neeto product apps." def audit Audit.new(options[:apps], options[:sandbox]).run end end end end end