Parent

Class/Module Index [+]

Quicksearch

Terremark

Public Class Methods

[](service) click to toggle source
# File lib/fog/bin/terremark.rb, line 17
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 4
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 8
def terremark_service(service)
  case service
  when :vcloud
    Fog::Terremark::Vcloud
  else
    raise "Unsupported Terremark Service"
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.