2015-10-08 10:42:10 -04:00

18 lines
350 B
Ruby

require "vagrant"
module VagrantPlugins
module CommandCap
class Plugin < Vagrant.plugin("2")
name "cap command"
description <<-DESC
The `cap` command checks and executes arbitrary capabilities.
DESC
command("cap", primary: false) do
require_relative "command"
Command
end
end
end
end