Sha256: ccffea90b81e139861b0361cf8f5baff7bef220608022f5f0d058d56b1f70f92
Contents?: true
Size: 403 Bytes
Versions: 26
Compression:
Stored size: 403 Bytes
Contents
module Fog module Billing extend Fog::ServicesMixin 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 end end
Version data entries
26 entries across 23 versions & 3 rubygems