Sha256: 90e482a2b327d74e3e39ab11af9e9225693ca6f707604f125f5b3ede29fa8cce

Contents?: true

Size: 819 Bytes

Versions: 15

Compression:

Stored size: 819 Bytes

Contents

class Ecloud < Fog::Bin
  class << self
    def available?
      Fog::Ecloud::ECLOUD_OPTIONS.all? {|requirement| Fog.credentials.include?(requirement)}
    end

    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
          Fog::Logger.warning("Ecloud[:compute] is not recommended, use Compute[:ecloud] for portability")
          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

15 entries across 15 versions & 4 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/bin/ecloud.rb
fog-1.25.0 lib/fog/bin/ecloud.rb
nsidc-fog-1.24.1 lib/fog/bin/ecloud.rb
fog-1.24.0 lib/fog/bin/ecloud.rb
ns-fog-1.22.11 lib/fog/bin/ecloud.rb
ns-fog-1.22.10 lib/fog/bin/ecloud.rb
ns-fog-1.22.9 lib/fog/bin/ecloud.rb
ns-fog-1.22.8 lib/fog/bin/ecloud.rb
ns-fog-1.22.7 lib/fog/bin/ecloud.rb
ns-fog-1.22.6 lib/fog/bin/ecloud.rb
fog-1.23.0 lib/fog/bin/ecloud.rb
ns-fog-1.22.4 lib/fog/bin/ecloud.rb
ns-fog-1.22.3 lib/fog/bin/ecloud.rb
ns-fog-1.22.2 lib/fog/bin/ecloud.rb
fog-1.22.1 lib/fog/bin/ecloud.rb