mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 00:42:33 -05:00
15 lines
333 B
Ruby
15 lines
333 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module CommandBox
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "box command"
|
|
description "The `box` command gives you a way to manage boxes."
|
|
|
|
command("box") do
|
|
require File.expand_path("../command/root", __FILE__)
|
|
Command::Root
|
|
end
|
|
end
|
|
end
|
|
end
|