# File lib/fog/account.rb, line 3 def self.[](provider) new(:provider => provider) end
# File lib/fog/account.rb, line 7 def self.new(attributes) attributes = attributes.dup provider = attributes.delete(:provider).to_s.downcase.to_sym if provider == :stormondemand require "fog/account/storm_on_demand" Fog::Account::StormOnDemand.new(attributes) else raise ArgumentError, "#{provider} has no account service" end end
# File lib/fog/account.rb, line 19 def self.providers Fog.services[:account] || [] end