Sha256: 9d563239097451366769bfc44e6586d956e2a6ddb7bc82f7ec15475bd2c43d4b

Contents?: true

Size: 455 Bytes

Versions: 3

Compression:

Stored size: 455 Bytes

Contents

require "pathname"

require "vagrant-gq/plugin"

module VagrantPlugins
  module GQ
    lib_path = Pathname.new(File.expand_path("../vagrant-gq", __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

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-gq-0.1.2 lib/vagrant-gq.rb
vagrant-gq-0.1.1 lib/vagrant-gq.rb
vagrant-gq-0.1.0 lib/vagrant-gq.rb