Sha256: 3783e8378b50052a0feb66f5eef5122b779d0dd93265a12878375b3dbf74708b
Contents?: true
Size: 621 Bytes
Versions: 10
Compression:
Stored size: 621 Bytes
Contents
require "pathname" require "vagrant-registration/plugin" module VagrantPlugins module Registration lib_path = Pathname.new(File.expand_path("../vagrant-registration", __FILE__)) autoload :Action, lib_path.join("action") #autoload :Errors, lib_path.join("errors") # This returns the path to the source of this plugin. # # @return [Pathname] def self.source_root @source_root ||= Pathname.new(File.expand_path("../../", __FILE__)) end # Temporally load the extra capability files for Red Hat load(File.join(self.source_root, 'plugins/guests/redhat/plugin.rb')) end end
Version data entries
10 entries across 8 versions & 1 rubygems