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
-
.action_commit_volumes ⇒ Object
Call = Vagrant::Action::Builtin::Call.
- .action_full_destroy ⇒ Object
Class Method Details
.action_commit_volumes ⇒ Object
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_destroy ⇒ Object
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 |