mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
18 lines
491 B
Ruby
18 lines
491 B
Ruby
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'
|