module VagrantPlugins::Registration::Action
Public Class Methods
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
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
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