Module: Vagrant::Commit::Action

Defined in:
lib/vagrant-commit/action.rb,
lib/vagrant-commit/action/full_destroy.rb,
lib/vagrant-commit/action/commit_volumes.rb

Defined Under Namespace

Classes: CommitVolumes, FullDestroyVolumes

Class Method Summary collapse

Class Method Details

.action_commit_volumesObject

Call = Vagrant::Action::Builtin::Call



11
12
13
14
15
# File 'lib/vagrant-commit/action.rb', line 11

def action_commit_volumes
  Vagrant::Action::Builder.new.tap do |b|
    b.use CommitVolumes
  end
end

.action_full_destroyObject



17
18
19
20
21
# File 'lib/vagrant-commit/action.rb', line 17

def action_full_destroy
  Vagrant::Action::Builder.new.tap do |b|
    b.use FullDestroyVolumes
  end
end