File: plugin.rb

package info (click to toggle)
vagrant 2.3.4%2Bdfsg-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 17,492 kB
  • sloc: ruby: 110,867; sh: 465; makefile: 84; lisp: 1
file content (18 lines) | stat: -rw-r--r-- 418 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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