22 lines
487 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require "vagrant"
module VagrantPlugins
module CommandListCommands
class Plugin < Vagrant.plugin("2")
name "list-commands command"
description <<-DESC
The `list-commands` command will list all commands that Vagrant
understands, even hidden ones.
DESC
command("list-commands", primary: false) do
require_relative "command"
Command
end
end
end
end