Module: Fog::Billing

Defined in:
lib/fog/billing.rb

Class Method Summary collapse

Class Method Details

.[](provider) ⇒ Object



3
4
5
# File 'lib/fog/billing.rb', line 3

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

.new(attributes) ⇒ Object



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

def self.new(attributes)
  attributes = attributes.dup
  provider = attributes.delete(:provider).to_s.downcase.to_sym
  if provider == :stormondemand
    require "fog/storm_on_demand/billing"
    Fog::Billing::StormOnDemand.new(attributes)
  else
    raise ArgumentError, "#{provider} has no billing service"
  end
end

.providersObject



18
19
20
# File 'lib/fog/billing.rb', line 18

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