lib/fog/storage/requests/aws/get_bucket.rb in fog-0.8.2 vs lib/fog/storage/requests/aws/get_bucket.rb in fog-0.9.0
- old
+ new
@@ -1,8 +1,8 @@
module Fog
- module AWS
- class Storage
+ module Storage
+ class AWS
class Real
require 'fog/storage/parsers/aws/get_bucket'
# List information about objects in an S3 bucket
@@ -48,10 +48,10 @@
:expects => 200,
:headers => {},
:host => "#{bucket_name}.#{@host}",
:idempotent => true,
:method => 'GET',
- :parser => Fog::Parsers::AWS::Storage::GetBucket.new,
+ :parser => Fog::Parsers::Storage::AWS::GetBucket.new,
:query => options
})
end
end