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
michiels-fog-1.3.1 lib/fog/bin/ovirt.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/bin/ovirt.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/bin/ovirt.rb
fog-1.3.1 lib/fog/bin/ovirt.rb
fog-1.3.0 lib/fog/bin/ovirt.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/bin/ovirt.rb
fog-1.2.0 lib/fog/bin/ovirt.rb
ktheory-fog-1.1.2 lib/fog/bin/ovirt.rb