Module: Vagrant::Butcher::Action

Defined in:
lib/vagrant-butcher/action.rb,
lib/vagrant-butcher/action/cleanup.rb,
lib/vagrant-butcher/action/copy_guest_key.rb

Defined Under Namespace

Classes: Cleanup, CopyGuestKey

Class Method Summary collapse

Class Method Details

.cleanupObject



7
8
9
10
11
# File 'lib/vagrant-butcher/action.rb', line 7

def self.cleanup
  ::Vagrant::Action::Builder.new.tap do |b|
    b.use Vagrant::Butcher::Action::Cleanup
  end
end

.copy_guest_keyObject



13
14
15
16
17
# File 'lib/vagrant-butcher/action.rb', line 13

def self.copy_guest_key
  ::Vagrant::Action::Builder.new.tap do |b|
    b.use Vagrant::Butcher::Action::CopyGuestKey
  end
end