Sha256: d756ca3a8676bc89c29600d3d313468a2b695818cd39f995f87e46c983eeb187
Contents?: true
Size: 693 Bytes
Versions: 30
Compression:
Stored size: 693 Bytes
Contents
module Fog module Vcloud module Terremark module Ecloud module Real def vdcs(options = {}) @vdcs ||= Fog::Vcloud::Terremark::Ecloud::Vdcs.new(options.merge(:connection => self)) end end #FIXME: Should be no need to do this ... duplicte code ... find a better way module Mock def vdcs(options = {}) @vdcs ||= Fog::Vcloud::Terremark::Ecloud::Vdcs.new(options.merge(:connection => self)) end end #/FIXME class Vdcs < Fog::Vcloud::Vdcs undef_method :create model Fog::Vcloud::Terremark::Ecloud::Vdc end end end end end
Version data entries
30 entries across 30 versions & 2 rubygems