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
  provider = attributes.delete(:provider).to_s.downcase.to_sym

  unless providers.include?(provider)
    raise ArgumentError.new("#{provider} has no identity service")
  end

  require "fog/#{provider}/identity"
  begin
    Fog::Identity.const_get(Fog.providers[provider]).new(attributes)
  rescue
    Fog::const_get(Fog.providers[provider])::Identity.new(attributes)
  end
end
providers() click to toggle source
# File lib/fog/identity.rb, line 24
def self.providers
  Fog.services[:identity]
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.