Sha256: d689fd922374692100c44059f492442bd7fbd096b4b0173f90ae1e563f2fd3f7

Contents?: true

Size: 710 Bytes

Versions: 7

Compression:

Stored size: 710 Bytes

Contents

class Ecloud < Fog::Bin
  class << self

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

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :compute
          Formatador.display_line("[yellow][WARN] Ecloud[:compute] is deprecated, use Compute[:ecloud] instead[/]")
          Fog::Compute.new(:provider => 'Ecloud')
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::Ecloud.services
    end

  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/bin/ecloud.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/bin/ecloud.rb
fog-0.11.0 lib/fog/bin/ecloud.rb
fog-0.10.0 lib/fog/bin/ecloud.rb
fog4encbs-0.9.0.1 lib/fog/bin/ecloud.rb
fog4encbs-0.9.0 lib/fog/bin/ecloud.rb
fog-0.9.0 lib/fog/bin/ecloud.rb