mirror of
				https://github.com/fog/fog.git
				synced 2022-11-09 13:51:43 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			384 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			384 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
module Fog
 | 
						|
  module AWS
 | 
						|
    class EC2
 | 
						|
 | 
						|
      def self.new(attributes = {})
 | 
						|
        location = caller.first
 | 
						|
        warning = "[yellow][WARN] Fog::AWS::EC2#new is deprecated, use Fog::AWS::Compute#new instead[/]"
 | 
						|
        warning << " [light_black](" << location << ")[/] "
 | 
						|
        Formatador.display_line(warning)
 | 
						|
        Fog::AWS::Compute.new(attributes)
 | 
						|
      end
 | 
						|
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |