Sha256: 298798dad8913a5ece291662c7cc298a3cdac284432094d036b18cb5e82dc3fb
Contents?: true
Size: 749 Bytes
Versions: 17
Compression:
Stored size: 749 Bytes
Contents
require 'pathname' require 'vagrant-ovirt3/plugin' module VagrantPlugins module OVirtProvider lib_path = Pathname.new(File.expand_path("../vagrant-ovirt3", __FILE__)) autoload :Action, lib_path.join("action") autoload :Errors, lib_path.join("errors") autoload :Util, lib_path.join("util") @@ovirt_connection = nil @@ovirt_client = nil def self.ovirt_connection @@ovirt_connection end def self.ovirt_connection=(conn) @@ovirt_connection = conn end def self.ovirt_client @@ovirt_client end def self.ovirt_client=(conn) @@ovirt_client = conn end def self.source_root @source_root ||= Pathname.new(File.expand_path("../../", __FILE__)) end end end
Version data entries
17 entries across 17 versions & 1 rubygems