flexera-public / right_aws

RightScale Amazon Web Services Ruby Gems
MIT License
451 stars 175 forks source link

added callback on every read attempt during multipart upload #166

Open timfjord opened 11 years ago

timfjord commented 11 years ago

Usefull when you need to add progress bar for upload process.

require 'progressbar'

#...

progressbar = ProgressBar.new 'Uploading', file.size
progressbar.file_transfer_mode
key.put_multipart file do |part_data|
  progressbar.inc part_data.size
end
progressbar.finish
timfjord commented 11 years ago

@rightscale any feedback on this?