1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00

Deprecate Storage::AWS

This commit is contained in:
sue445 2018-09-14 23:15:24 +09:00
parent d0a52e2da2
commit 44f7db83d4

View file

@ -764,4 +764,17 @@ DATA
end
end
end
# @deprecated
module Storage
# @deprecated
class AWS < Fog::AWS::Storage
# @deprecated
# @overrides Fog::Service.new (from the fog-core gem)
def self.new(*)
Fog::Logger.deprecation 'Fog::Storage::AWS is deprecated, please use Fog::AWS::Storage.'
super
end
end
end
end