Sha256: 9c310d374b531fb50ac8aed9d0b0451c9fae9af4cfcb85639cfaf2a9928dcce1

Contents?: true

Size: 491 Bytes

Versions: 3

Compression:

Stored size: 491 Bytes

Contents

require 'pathname'

module VagrantPlugins
  module ProviderLibvirt
    lib_path = Pathname.new(File.expand_path('../vagrant-libvirt', __FILE__))
    autoload :Action, lib_path.join('action')
    autoload :Errors, lib_path.join('errors')
    autoload :Util, lib_path.join('util')

    def self.source_root
      @source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
    end
  end
end

# make sure base module class defined before loading plugin
require 'vagrant-libvirt/plugin'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-libvirt-0.0.33 lib/vagrant-libvirt.rb
vagrant-libvirt-0.0.32 lib/vagrant-libvirt.rb
vagrant-libvirt-0.0.31 lib/vagrant-libvirt.rb