Module: Fog::Billing

Extended by:
ServicesMixin
Defined in:
lib/fog/billing.rb

Class Method Summary collapse

Methods included from ServicesMixin

[], new, providers

Class Method Details

.new(orig_attributes) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'lib/fog/billing.rb', line 5

def self.new(orig_attributes)
  attributes = orig_attributes.dup
  provider = attributes.delete(:provider).to_s.downcase.to_sym
  if provider == :stormondemand
    require "fog/billing/storm_on_demand"
    Fog::Billing::StormOnDemand.new(attributes)
  else
    super(orig_attributes)
  end
end