1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/ec2.rb

16 lines
384 B
Ruby
Raw Normal View History

module Fog
2009-06-30 12:43:39 -04:00
module AWS
2010-09-08 17:40:02 -04:00
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)
2009-08-14 13:35:16 -04:00
end
2009-06-30 12:43:39 -04:00
end
end
end