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/s3.rb

16 lines
382 B
Ruby
Raw Normal View History

2009-05-19 02:06:49 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class S3
def self.new(attributes = {})
location = caller.first
warning = "[yellow][WARN] Fog::AWS::S3#new is deprecated, use Fog::AWS::Storage#new instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::AWS::Storage.new(attributes)
end
2009-05-19 02:06:49 -04:00
end
end
2009-08-17 18:11:53 -04:00
end