Sha256: 0b62ac9e3626a4a24e8b90d0bfcd7e912c6822beac3386231e8f7f6ebe87ec21
Contents?: true
Size: 543 Bytes
Versions: 69
Compression:
Stored size: 543 Bytes
Contents
require 'vagrant/action/general/package' module Vagrant class Action module Box # Packages a box which has already been unpackaged (such as # for the `vagrant box repackage` command) by leveraging the # general packager middleware. class Package < General::Package # Alias instead of calling super for testability alias_method :general_call, :call def call(env) env["package.directory"] = env["box"].directory general_call(env) end end end end end
Version data entries
69 entries across 69 versions & 5 rubygems