module VagrantPlugins::Registration::Action

Public Class Methods

action_register() click to toggle source
# File lib/vagrant-registration/action.rb, line 5
def self.action_register
  Vagrant::Action::Builder.new.tap do |b|
    b.use Register
  end
end
action_unregister_on_destroy() click to toggle source
# File lib/vagrant-registration/action.rb, line 17
def self.action_unregister_on_destroy
  Vagrant::Action::Builder.new.tap do |b|
    b.use UnregisterOnDestroy
  end
end
action_unregister_on_halt() click to toggle source
# File lib/vagrant-registration/action.rb, line 11
def self.action_unregister_on_halt
  Vagrant::Action::Builder.new.tap do |b|
    b.use UnregisterOnHalt
  end
end