Sha256: 2ea439932cc4b5889c5f430f97aad1a5b21007afe87adb77671ea949746fed66

Contents?: true

Size: 649 Bytes

Versions: 88

Compression:

Stored size: 649 Bytes

Contents

class Ovirt < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :compute
        Fog::Compute::Ovirt
      else
        raise ArgumentError, "Unrecognized service: #{key}"
      end
    end

    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

    def services
      Fog::Ovirt.services
    end

  end
end

Version data entries

88 entries across 88 versions & 16 rubygems

Version Path
fog-maestrodev-1.15.0.20130927082724 lib/fog/bin/ovirt.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/bin/ovirt.rb
fog-1.15.0 lib/fog/bin/ovirt.rb
gapinc-fog-1.14.0 lib/fog/bin/ovirt.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/bin/ovirt.rb
fog-1.14.0 lib/fog/bin/ovirt.rb
fog-1.13.0 lib/fog/bin/ovirt.rb
gapinc-fog-1.12.1.2 lib/fog/bin/ovirt.rb
gapinc-fog-1.12.1.1 lib/fog/bin/ovirt.rb
gapinc-fog-1.12.1a lib/fog/bin/ovirt.rb
gapinc-fog-1.12.1 lib/fog/bin/ovirt.rb
fog-1.12.1 lib/fog/bin/ovirt.rb
fog-1.12.0 lib/fog/bin/ovirt.rb
hpfog-0.0.20 lib/fog/bin/ovirt.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/bin/ovirt.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/bin/ovirt.rb
fog-nirvanix-1.8.2 lib/fog/bin/ovirt.rb
fog-1.11.1 lib/fog/bin/ovirt.rb
fog-1.11.0 lib/fog/bin/ovirt.rb
fog-nirvanix-1.8.1 lib/fog/bin/ovirt.rb