require "vagrant" module VagrantPlugins module CommandProvision autoload :Command, File.expand_path("../command", __FILE__) class Plugin < Vagrant.plugin("1") name "provision command" description <<-DESC The `provision` command provisions your virtual machine based on the configuration of the Vagrantfile. DESC command("provision") { Command } end end end