Sha256: 6aa16de02d41008c067a09bf77d76e0010577fcaf6856b031065701c78a952d5

Contents?: true

Size: 455 Bytes

Versions: 2

Compression:

Stored size: 455 Bytes

Contents

require "pathname"

require "vagrant-hp/plugin"

module VagrantPlugins
  module HP
    lib_path = Pathname.new(File.expand_path("../vagrant-hp", __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-hp-0.1.2 lib/vagrant-hp.rb
vagrant-hp-0.1.1 lib/vagrant-hp.rb