Module: VagrantPlugins::HostManager::Action

Includes:
Vagrant::Action::Builtin
Defined in:
lib/vagrant-hostmanager/action.rb,
lib/vagrant-hostmanager/action/update_all.rb,
lib/vagrant-hostmanager/action/update_host.rb,
lib/vagrant-hostmanager/action/update_guest.rb

Defined Under Namespace

Classes: UpdateAll, UpdateGuest, UpdateHost

Class Method Summary collapse

Class Method Details

.update_allObject



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

def self.update_all
  Vagrant::Action::Builder.new.tap do |builder|
    builder.use ConfigValidate
    builder.use UpdateAll
  end
end

.update_guestObject



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

def self.update_guest
  Vagrant::Action::Builder.new.tap do |builder|
    builder.use ConfigValidate
    builder.use UpdateGuest
  end
end

.update_hostObject



24
25
26
27
28
# File 'lib/vagrant-hostmanager/action.rb', line 24

def self.update_host
  Vagrant::Action::Builder.new.tap do |builder|
    builder.use UpdateHost
  end
end