Tagged Questions

RubyZip is library used to generate zip files or extract a zip file in Ruby. http://rubyzip.sourceforge.net/

learn more… | top users | synonyms

5
votes
2answers
214 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 ...
3
votes
2answers
458 views

Set compression level when generating a ZIP file using RubyZip

I have a Ruby program that zips a directory tree of XML files using the rubyzip gem. My problem is that the file is starting to be heavy and I would like to increase the compression level, since ...
2
votes
4answers
388 views

zipruby or rubyzip?

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 ...
2
votes
1answer
690 views

Using rubyzip error - no such file to load — zip/zip

I know there is another thread on this subject but I still face this problem even after using all solutions. Is there any other way to generate zip files? Can i use Ubuntu system commands? I did ...
2
votes
1answer
69 views

losing data when zipping files

I am using rubyzip on windows to zip up a directory. When I unzip the archive some of the files are smaller than they were. Zipping should be a lossless operation so I am wondering why this is ...
2
votes
3answers
2k views

Using rubyzip to add files and nested directories to a zipoutputstream

I'm struggling with getting rubyzip to append directories to a zipoutputstream. (I want the output stream so I can send it from a rails controller). My code follows this example: ...
1
vote
0answers
23 views

How to rename file and directory in a zip file using rubyzip

I'm trying to rename a file and a directory in a zip. I'd tried three different, all not working. What is the right command to do it? Below is the excerpt of my code: require 'zip/zip' ... def ...
1
vote
1answer
219 views

Can't install RubyZip gem on OS X Lion with RVM

TL;DR: $ gem install rubyzip ERROR: While executing gem ... (Errno::EPERM) Operation not permitted - /Users/darth/.rvm/gems/ruby-1.9.2-p136/gems/rubyzip-0.9.4/README And now in detail. I'm ...
1
vote
2answers
440 views

How to unzip a zipped folder with rubyzip

I know how to retrieve the contents of a normal zip-file with rubyzip. But i got trouble unzipping the contents of a zipped folder and i hope any of u guys can help me out. this is the code i use to ...
1
vote
2answers
369 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
232 views

rubyzip error when generating zips of images on the fly : End-of-central-directory signature not found

I'm generating a zip file from a collection of images which is then sent to the user. I'm using code which is almost exactly the same as the example given on this page; ...
1
vote
2answers
419 views

How do I get a temporary File object (of correct content-type, without writing to disk) directly from a ZipEntry (RubyZip, Paperclip, Rails 3)?

I'm currently trying to attach image files to a model directly from a zip file (i.e. without first saving them on a disk). It seems like there should be a clearer way of converting a ZipEntry to a ...
1
vote
2answers
1k views

How to edit docx with nokogiri and rubyzip

I'm using a combination of rubyzip and nokogiri to edit a .docx file. I'm using rubyzip to unzip the .docx file and then using nokogiri to parse and change the body of the word/document.xml file but ...
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
906 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?
1
vote
2answers
191 views

How can I copy a directory inside a zip archive to a second zip archive using rubyzip?

I have a .zip archive containing several directories. Using the rubyzip gem I would like to reach into the .zip archive, copy a specified directory (and its contents) and move the directory into a ...
1
vote
2answers
792 views

Opening a multipart/form-data ZIP file with rubyzip

I want to extract the files within a ZIP file I uploaded to my Rails app. The files within the ZIP file are going to be stored in the database. I want to open the ZIP file in my action, without first ...
1
vote
3answers
2k views

How to unzip password protected file via Ruby

I'd like to unzip an encrypted/password protected file via a Ruby script without dropping down to a system call. I currently use the rubyzip library to unzip files but don't see an option for working ...
0
votes
0answers
36 views

Is rubyzip a good choice for s3 cloud files compression? What are the other options?

In a Rails file sharing application that I have been working on, I want user to be able to download a zip of all the files under one folder. Currently I am using rubyzip gem,specifically ...
0
votes
0answers
62 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
88 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
15 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
44 views

RubyZip: archiving process indication

I am adding tons of file to my archive it looks like this: print "Starting ..." Zip::ZipFile.open(myarchive, 'w') do |zipfile| my_tons_of_files.each do |file| print "Adding #{file.filename} to ...
0
votes
1answer
133 views

rubyzip file order

I am making an archive for a directory, where each file has a name with 3 digits starting from 001 to 049. My code is the following: Zip::ZipFile.open(File.join(out, dir+".cbz"), ...
0
votes
1answer
246 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
124 views

Newbie rubyzip question

Zip::ZipOutputStream.open(folderpath) do |z| z.print IO.read(folderpath) Hi all, I am currently learning rails, and somehow a bit stuck while reading others code. In the above mentioned ...
0
votes
1answer
772 views

Paperclip processor can't find it's file

Formerly: Running a model method on a paperclip attachment after create or update (paperclip callbacks don't seem to work) Edit (later that day) I figured out my problem. The processor apparently ...
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
192 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 ...
0
votes
1answer
97 views

How do I find a specific entry inside a zipped directory using the rubyzip gem?

I have a zip file named test.zip which contains a directory named invoice. Inside the invoice directory there are documents each with different names. I would like to find a specific document named ...
0
votes
2answers
1k views

How do I get a zipped file's content using the rubyzip library?

I'm trying to extract an uploaded zip file and store its contents in the database, one entry per file. The rubyzip library has nearly no useful documentation. There is an assets table that has key ...