Sha256: b8487788cb2c6e931a39ccbf1b7f6e3207b7fa9334edbf785af45d8c03770644

Contents?: true

Size: 538 Bytes

Versions: 56

Compression:

Stored size: 538 Bytes

Contents

module Fog
  module Account

    def self.[](provider)
      self.new(:provider => provider)
    end

    def self.new(attributes)
      attributes = attributes.dup
      provider = attributes.delete(:provider).to_s.downcase.to_sym

      if provider == :stormondemand
        require 'fog/storm_on_demand/account'
        Fog::Account::StormOnDemand.new(attributes)
      else
        raise ArgumentError.new("#{provider} has no account service")
      end
    end

    def self.providers
      Fog.services[:account]
    end

  end
end

Version data entries

56 entries across 56 versions & 4 rubygems

Version Path
fog-core-1.24.0 lib/fog/account.rb
fog-core-1.23.0 lib/fog/account.rb
fog-core-1.22.0 lib/fog/account.rb
fog-core-1.21.1 lib/fog/account.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/account.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/account.rb
fog-core-1.21.0 lib/fog/account.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/account.rb
fog-1.20.0 lib/fog/account.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/account.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/account.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/account.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/account.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/account.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/account.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/account.rb
fog-1.19.0 lib/fog/account.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/account.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/account.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/account.rb