We use Roo to handle the spreadsheets that are upload. Everything works fine.
A request was put in to allow for a zip file with multiple excel docs in it. I went out and added
gem 'rubyzip', '>= 1.0.0'
and ran bundle install. Following the guidelines on https://github.com/rubyzip/rubyzip#reading-a-zip-file I have opened the zip file and have the first entry which is a .xls file. Now for the life of me I can't figure out how to pass the file over to Roo to have it process it.
Do I need to extract it to a specific location and then pass that path? Can I pass it to roo without having to save the file to my /public folder?