Sha256: e5448f0b6818f190a78c60c8d436413b605854c281202e01b7545f50767e4a15
Contents?: true
Size: 527 Bytes
Versions: 16
Compression:
Stored size: 527 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 Vagrant::Action::Builder.new.tap do |b| b.use Unregister end end action_root = Pathname.new(File.expand_path("../action", __FILE__)) autoload :Register, action_root.join("register") autoload :Unregister, action_root.join("unregister") end end end
Version data entries
16 entries across 15 versions & 1 rubygems