class ChefCLI::CommandsMap
def builtin(name, constant_name, require_path: NULL_ARG, desc: "", hidden: false)
def builtin(name, constant_name, require_path: NULL_ARG, desc: "", hidden: false) if null?(require_path) snake_case_path = name.tr("-", "_") require_path = "chef-cli/command/#{snake_case_path}" end command_specs[name] = CommandSpec.new(name, constant_name, require_path, desc, hidden) end