Sha256: cc52636236b1324a84cd8706bf983a07122772f907f0ae6aa3c1964d1639e8b6
Contents?: true
Size: 785 Bytes
Versions: 12
Compression:
Stored size: 785 Bytes
Contents
module VagrantPlugins module Registration module Action def self.action_register Vagrant::Action::Builder.new.tap do |b| b.use Register end end def self.action_unregister_on_halt Vagrant::Action::Builder.new.tap do |b| b.use UnregisterOnHalt end end def self.action_unregister_on_destroy Vagrant::Action::Builder.new.tap do |b| b.use UnregisterOnDestroy end end action_root = Pathname.new(File.expand_path('../action', __FILE__)) autoload :Register, action_root.join('register') autoload :UnregisterOnHalt, action_root.join('unregister_on_halt') autoload :UnregisterOnDestroy, action_root.join('unregister_on_destroy') end end end
Version data entries
12 entries across 12 versions & 1 rubygems