# File lib/fog/terremark/vcloud.rb, line 17 def self.new(options={}) location = caller.first warning = "[yellow][WARN] Fog::Terremark::Vcloud is deprecated, to be replaced with Vcloud 1.0 someday/maybe[/]" warning << " [light_black](" << location << ")[/] " Formatador.display_line(warning) unless @required shared_requires @required = true end check_shared_options(options) if Fog.mocking? Fog::Terremark::Vcloud::Mock.new(options) else Fog::Terremark::Vcloud::Real.new(options) end end