Tagged Questions

2
votes
4answers
406 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
699 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 ...
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
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
794 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 ...
0
votes
0answers
39 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
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
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
99 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 ...