# File lib/fog/bin/ovirt.rb, line 12 def [](service) @@connections ||= Hash.new do |hash, key| hash[key] = case key when :compute Fog::Compute.new(:provider => "Ovirt") else raise ArgumentError, "Unrecognized service: #{key.inspect}" end end @@connections[service] end
# File lib/fog/bin/ovirt.rb, line 3 def class_for(key) case key when :compute Fog::Compute::Ovirt else raise ArgumentError, "Unrecognized service: #{key}" end end
# File lib/fog/bin/ovirt.rb, line 24 def services Fog::Ovirt.services end