I've got a ruby on rails site here (rails 2.0.2, ruby 1.8.6) with both rubyzip and zipruby installed, but they conflict on the File.exists? method so I want to remove one. What's the general consensus out there on the best zipping api going forward?

Are there significant advantages of one over another?

link|improve this question
Can't you just use Ruby's zlib library that comes with Ruby itself? – Maurício Linhares Aug 2 '11 at 3:29
Possible, but I like the convenience of the gems and am not looking to re-implement. – vaughanos Aug 2 '11 at 3:34
@mauricio-linhares I don't think the zlib interface lets you manipulate zip files. – Kelvin Aug 2 '11 at 22:28
feedback

4 Answers

up vote 1 down vote accepted

Totally random answer, as I've never tried either: moving forward from your current state, RubyZip might be more promising. Judging from the following (scant) data, RubyZip is both more popular and seems to work better with new versions of Ruby:

RubyZip with 1.9: http://isitruby19.com/rubyzip

ZipRuby with 1.9: http://isitruby19.com/zipruby

Unless you get some better evidence, I'd go with rubyZip. Also see What zip library works well with Ruby 1.9.2?. However, there's also a fork of RubyZip (https://github.com/postmodern/rubyzip2) again pointing to its popularity. And the docs looks more interesting.

link|improve this answer
thanks, good thoughts looking forward. I'm still trying to establish whether one is 'better' than the other - though general popularity may be a good enough indicator. – vaughanos Aug 4 '11 at 22:52
@vaughanos, my general hypothesis is that popularity -> more attention and development --> you don't end up holding the bag on a gem that doesn't work because Rails or Ruby have changed. – Yar Aug 5 '11 at 12:12
1  
Agree entirely @Yar - thanks. – vaughanos Aug 7 '11 at 22:14
rubyzip doesn't always produce Windows compatible zip files. zipruby doesn't appear to have this problem. We recently hit issues with rubyzip (and rubyzip2 and the zip gem) which all failed to extract zip files on windows 7 that worked fine everywhere else. – zdennis Sep 15 '11 at 2:43
feedback

From what I've seen, rubyzip sometimes handles zip files strangely because it does its own handling of the zip file index and records. For example, if you use rubyzip to unpack a docx file and repack it, Microsoft Word won't open it. But zipruby uses the very standard libzip C library (with slight customizations) and won't mangle a docx. So if you're aiming for format compatibility, I'd suggest using zipruby. Maybe rubyzip has improved since I tried it - but you should try it yourself.

link|improve this answer
Great point - thanks! – vaughanos Aug 4 '11 at 22:50
@vaughanos If you any of the answers useful, please upvote. It encourages people to contribute better answers. Your question itself doesn't lend itself to a single definite answer, so I won't ask you to accept :) – Kelvin Aug 5 '11 at 15:54
Thanks @kelvin, I'm new so don't have the appropriate 'reputation', but do appreciate your answer. – vaughanos Aug 7 '11 at 22:13
@vaughanos sorry about that - I forgot that 15 points are required to upvote. – Kelvin Aug 8 '11 at 14:51
feedback

I have used https://github.com/toretore/zippy gem a lot and I think it is quite good. It is wrapper for rubyzip and it dramatically simplifies operations with zip files.

link|improve this answer
feedback

If you only need to get a single file or a few files from a zipfile you can try to use Pinch which will let you extract a file over http in ruby

Pinch: Retrieve a file from inside a zip file, over the network!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.