Sha256: 173d8b524e1cbe68f1fd99dce36ea40168490742c5a2b6bcb606c1009e88361a
Contents?: true
Size: 493 Bytes
Versions: 12
Compression:
Stored size: 493 Bytes
Contents
require "pathname" require "vagrant-managed-servers/plugin" module VagrantPlugins module ManagedServers lib_path = Pathname.new(File.expand_path("../vagrant-managed-servers", __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
12 entries across 12 versions & 1 rubygems