Sha256: 5f2b6ac372b959903f90521d1b6ccc4b912bc1409089617233a800d3433502b6
Contents?: true
Size: 536 Bytes
Versions: 56
Compression:
Stored size: 536 Bytes
Contents
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
Version data entries
56 entries across 56 versions & 4 rubygems