mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
536 B
Ruby
24 lines
536 B
Ruby
|
module Fog
|
||
|
module Billing
|
||
|
|
||
|
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/billing'
|
||
|
Fog::Billing::StormOnDemand.new(attributes)
|
||
|
else
|
||
|
raise ArgumentError.new("#{provider} has no billing service")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.providers
|
||
|
Fog.services[:billing]
|
||
|
end
|
||
|
end
|
||
|
end
|