Class: RightAws::S3Interface::S3HttpResponseBodyParser

Inherits:
S3HttpResponseParser show all
Defined in:
lib/s3/right_s3_interface.rb

Overview

:nodoc:

Instance Attribute Summary

Attributes inherited from S3HttpResponseParser

#result

Instance Method Summary collapse

Methods inherited from S3HttpResponseParser

#headers_to_string

Instance Method Details

#parse(response) ⇒ Object



1214
1215
1216
1217
1218
1219
# File 'lib/s3/right_s3_interface.rb', line 1214

def parse(response)
  @result = { 
    :object  => response.body, 
    :headers => headers_to_string(response.to_hash)
  }
end