Tagged Questions

5
votes
2answers
216 views

Rubyzip vs native OS compression

I am wondering what would be the performance difference when zipping data using rubyzip as compared to using native os libraries for performing the compression. I am fetching data to be compressed ...
1
vote
2answers
379 views

What zip library works well with Ruby 1.9.2?

I used the rubyzip gem in Ruby 1.8.7 before, but I heard rubyzip doesn't work well with ruby 1.9.2. What zip libraries work well with Ruby 1.9.2?
1
vote
1answer
278 views

How to close a ZipFile

I'm passing a dynamic zip file location to a def from a database. I want to unzip the file to a temp location, extract the xml report file inside, apply an xslt stylesheet, copy it as an rhtml to a ...
1
vote
2answers
910 views

Read file comments from a zip file in Ruby

I am doing Python challenge in Ruby. I need to read the file contents and comments from a Zip file. The content is no problem with the RubyZip gem but I am unable to get the comments out. Any ideas?
0
votes
0answers
64 views

extracting a zip file with rubyzip + rails3

I'm trying to extract a zip file from rails3. My requirement is to allow user to upload a zip file with images (.jpg, .png etc) and extract it to applications /public/images folder So far I was able ...
0
votes
1answer
33 views

Subdirectories in Zip file using ZipOutputStream

I am creating a zip file using the technique described here: http://info.michael-simons.eu/2008/01/21/using-rubyzip-to-create-zip-files-on-the-fly/ The client has asked that I include subdirectories ...
0
votes
2answers
91 views

Ruby storing remote files in Zip using RubyZip

I have a model called Image. Images have files attached using Dragonfly that are stored in S3. I have a requirement that I need to zip up all images. I'm using: Zip::ZipFile.open(tmp_zip, ...
0
votes
0answers
16 views

zipping up the current viewed html page on the browser using rubyzip?

I'm new to the rubyzip gem and I was wondering, is it possible to use rubyzip to zip the html page that is currently viewed on the browser in its current state? like how you can do on chrome if you ...
0
votes
1answer
247 views

xlsx compressed by rubyzip not readable by Excel

I am working on writing code which can read/write Excel xlsx files. xlsx files are simply zip archives of several xml files, so in order to test out if I could write a file, I used a gem called ...
0
votes
1answer
199 views

RubyZip turning JPGs into “not JPGs, starts with 0x89”

I'm using RubyZip to compress a set of images (uploaded using Paperclip) and allow the user to download them in one file, and all works fine until I come to open an image. It wont display, and trying ...
0
votes
1answer
193 views

Rubyzip - possible to set extraction folder?

My problem is that I need to set the root extraction folder for a zip-file I'm generating by using Rubyzip. The zip-file will be opened in Windows as self-extractable. Is this option available in ...