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-- 398 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "vagrant"


module VagrantPlugins
  module CommandAutocomplete
    class Plugin < Vagrant.plugin("2")
      name "autocomplete command"
      description <<-DESC
      The `autocomplete` manipulates Vagrant the autocomplete feature.
      DESC

      command("autocomplete") do
        require File.expand_path("../command/root", __FILE__)
        Command::Root
      end
    end
  end
end