class Terremark

Public Class Methods

[](service) click to toggle source
# File lib/fog/bin/terremark.rb, line 16
def [](service)
  @@connections ||= Hash.new do |hash, key|
    credentials = Fog.credentials.reject do |k,v|
      case key
        when :vcloud
          !Fog::Terremark::VCLOUD_OPTIONS.include?(k)
      end
    end
    hash[key] = terremark_service(key).new(credentials)
  end
  @@connections[service]
end
available?() click to toggle source
# File lib/fog/bin/terremark.rb, line 3
def available?
  Fog::Terremark::VCLOUD_OPTIONS.all? {|requirement| Fog.credentials.include?(requirement)}
end
terremark_service(service) click to toggle source
# File lib/fog/bin/terremark.rb, line 7
def terremark_service(service)
  case service
    when :vcloud
      Fog::Terremark::Vcloud
    else
      raise "Unsupported Terremark Service"
  end
end