Sha256: 7b097b4d232bfb5bb1566441d12d4fe86e223986b7bb1cd879d044d8245c5837
Contents?: true
Size: 490 Bytes
Versions: 2
Compression:
Stored size: 490 Bytes
Contents
require "pathname" require "vagrant-plugin-bundler/plugin" module VagrantPlugins module PluginBundler lib_path = Pathname.new(File.expand_path("../vagrant-plugin-bundler", __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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-plugin-bundler-0.1.1 | lib/vagrant-plugin-bundler.rb |
vagrant-plugin-bundler-0.1.0 | lib/vagrant-plugin-bundler.rb |