Sha256: 440b7a6358041ab4c35895f7036140e65510e4590f6204f7d178a97c5736ec9c

Contents?: true

Size: 374 Bytes

Versions: 21

Compression:

Stored size: 374 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CloudCommand
    module BoxCommand
      class Plugin < Vagrant.plugin("2")
        name "vagrant cloud box"
        description <<-DESC
        Box life cycle commands for Vagrant Cloud
        DESC

        command(:box) do
          require_relative "root"
          Command::Root
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 3 rubygems

Version Path
vagrant-unbundled-2.2.0.0 plugins/commands/cloud/box/plugin.rb