Sha256: 2625b873935e63938934cc2d86ce129185f49ecea4043e9e068c2b9bc7b373d5

Contents?: true

Size: 436 Bytes

Versions: 1

Compression:

Stored size: 436 Bytes

Contents

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/commands/list-commands/plugin.rb