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