Sha256: 2a544ee6c59fd2d3d78821779487baffc02943323492a14f9c726bd4b081c2d3
Contents?: true
Size: 496 Bytes
Versions: 9
Compression:
Stored size: 496 Bytes
Contents
require 'pathname' require 'vagrant-vcenter/plugin' module VagrantPlugins # Initialize the plugin. module VCenter lib_path = Pathname.new(File.expand_path('../vagrant-vcenter', __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 end end
Version data entries
9 entries across 9 versions & 1 rubygems