Sha256: 5c01b573191fb2698fa43b913183f3fa6b9e4b406e8ce3f3c805ac69a5f9f9e0
Contents?: true
Size: 464 Bytes
Versions: 17
Compression:
Stored size: 464 Bytes
Contents
require "pathname" require "vagrant-shell/plugin" module VagrantPlugins module Shell lib_path = Pathname.new(File.expand_path("../vagrant-shell", __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
17 entries across 17 versions & 1 rubygems