# File lib/fog/ovirt/compute.rb, line 101 def initialize(options = {}) if options[:api_version] == "v4" Fog::Compute::Ovirt::V4::Real.send(:include, Fog::Compute::Ovirt::Collections) @client = Fog::Compute::Ovirt::V4::Real.new(options) else Fog::Compute::Ovirt::V3::Real.send(:include, Fog::Compute::Ovirt::Collections) @client = Fog::Compute::Ovirt::V3::Real.new(options) end end
rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing
# File lib/fog/ovirt/compute.rb, line 112 def method_missing(symbol, *args) @client.send(symbol, *args) end
# File lib/fog/ovirt/compute.rb, line 116 def respond_to?(symbol, include_all = false) @client.respond_to?(symbol, include_all) end