I'm trying to implement the Chunk File Upload via a Ruby on Rails application and I'm having a few difficulties.
1. What methods are other developers using to split the document files into separate chunks for uploading? I'm trying to use `IO.binread(file, length, offset)` but that seems less than performant.
2. When I try to upload the file parts I've created via the previously mentioned `IO.binread()`, even if the file sizes say they are exactly what Box is expecting, I receive a "413 Request Entity` error saying I've went over the size limit.
If anyone has successfully implemented this in Ruby on Rails and has either some pointers or a repo I can look at to see how you organized things I'd really appreciate it!