# File lib/fog/bin/ovirt.rb, line 13 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 4 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 25 def services Fog::Ovirt.services end