Sha256: e7ebf215444a8733f20af387f4825c26ab0837ad451ffa5e62a64a8af1d9669a

Contents?: true

Size: 477 Bytes

Versions: 2

Compression:

Stored size: 477 Bytes

Contents

require "pathname"

require "vagrant-g5k/plugin"
require 'thread'

module VagrantPlugins
  module G5K

    lib_path = Pathname.new(File.expand_path("../vagrant-g5k", __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-g5k-0.0.16 lib/vagrant-g5k.rb
vagrant-g5k-0.0.15 lib/vagrant-g5k.rb