vagrant/plugins/commands/box/plugin.rb

18 lines
403 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
autoload :StateFile, File.expand_path("../state_file", __FILE__)
end
end