Sha256: 67aa98046ee8b6796373e132b296c8effb1022e6ea084fd89e97012cf001692c
Contents?: true
Size: 404 Bytes
Versions: 26
Compression:
Stored size: 404 Bytes
Contents
module Fog module Support 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/support/storm_on_demand" Fog::Support::StormOnDemand.new(attributes) else super(orig_attributes) end end end end
Version data entries
26 entries across 23 versions & 3 rubygems