Sha256: 1c5236177b2cd1820e6d6551b8e23aea8bcdf330da0d5e3f5f941d315be7e61b
Contents?: true
Size: 526 Bytes
Versions: 7
Compression:
Stored size: 526 Bytes
Contents
module Fog module Billing def self.[](provider) 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/billing/storm_on_demand" Fog::Billing::StormOnDemand.new(attributes) else raise ArgumentError, "#{provider} has no billing service" end end def self.providers Fog.services[:billing] end end end
Version data entries
7 entries across 7 versions & 2 rubygems