In Files

Namespace

Class/Module Index [+]

Quicksearch

Fog::Identity

Public Class Methods

[](provider) click to toggle source
# File lib/fog/identity.rb, line 4
def self.[](provider)
  self.new(:provider => provider)
end
new(attributes) click to toggle source
# File lib/fog/identity.rb, line 8
def self.new(attributes)
  attributes = attributes.dup # Prevent delete from having side effects
  case provider = attributes.delete(:provider).to_s.downcase.to_sym
  when :rackspace
    require 'fog/rackspace/identity'
    Fog::Rackspace::Identity.new(attributes)
  else
    if self.providers.include?(provider)
      require "fog/#{provider}/identity"
      return Fog::Identity.const_get(Fog.providers[provider]).new(attributes)
    end
    raise ArgumentError.new("#{provider} has no identity service")
  end
end
providers() click to toggle source
# File lib/fog/identity.rb, line 23
def self.providers
  Fog.services[:identity]
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.