Sha256: d44db73bf1ec72ca57be25dcbedf1530525c8d6ccac978754f15dec8d65947bd
Contents?: true
Size: 636 Bytes
Versions: 7
Compression:
Stored size: 636 Bytes
Contents
require "pathname" require "vagrant_hook/plugin" module VagrantPlugins module VagrantHook lib_path = Pathname.new(File.expand_path("../vagrant_hook", __FILE__)) #autoload :Action, lib_path.join("action") #autoload :DSL, lib_path.join("dsl") #autoload :Config, lib_path.join("config") #autoload :Errors, lib_path.join("errors") #autoload :Provisioner, lib_path.join("provisioner") # 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
7 entries across 7 versions & 1 rubygems