class RightAws::S3Interface::S3MultipartUploadInitiateResponseParser
Public Instance Methods
headers_to_string(headers)
click to toggle source
# File lib/s3/right_s3_interface.rb, line 633 def headers_to_string(headers) result = {} headers.each do |key, value| value = value.first if value.is_a?(Array) && value.size<2 result[key] = value end result end
reset()
click to toggle source
# File lib/s3/right_s3_interface.rb, line 630 def reset @result = {} end
tagend(name)
click to toggle source
# File lib/s3/right_s3_interface.rb, line 641 def tagend(name) case name when 'UploadId' then @result[:upload_id] = @text end end