2012-11-06 21:09:29 -08:00

16 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