Sha256: 114bdb8f00ae1896a2747a5fa03640cd420a3ed5b9bdd24ccd0bc6ce3bebf9bd

Contents?: true

Size: 436 Bytes

Versions: 1

Compression:

Stored size: 436 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CommandPackage
    class Plugin < Vagrant.plugin("2")
      name "package command"
      description <<-DESC
      The `package` command will take a previously existing Vagrant
      environment and package it into a box file.
      DESC

      command("package") do
        require File.expand_path("../command", __FILE__)
        Command
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/commands/package/plugin.rb