vagrant/plugins/commands/provider/plugin.rb

19 lines
412 B
Ruby
Raw Normal View History

2015-11-04 22:20:48 +00:00
require "vagrant"
module VagrantPlugins
module CommandProvider
class Plugin < Vagrant.plugin("2")
name "provider command"
description <<-DESC
The `provider` command is used to interact with the various providers
that are installed with Vagrant.
DESC
command("provider", primary: false) do
require_relative "command"
Command
end
end
end
end