2018-06-25 19:56:54 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CloudCommand
|
|
|
|
module ProviderCommand
|
|
|
|
class Plugin < Vagrant.plugin("2")
|
|
|
|
name "vagrant cloud box"
|
|
|
|
description <<-DESC
|
2018-09-10 23:28:24 +00:00
|
|
|
Provider life cycle commands for Vagrant Cloud
|
2018-06-25 19:56:54 +00:00
|
|
|
DESC
|
|
|
|
|
|
|
|
command(:provider) do
|
|
|
|
require_relative "root"
|
|
|
|
Command::Root
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|