Tagged Questions
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
391 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
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
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
441 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
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
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
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
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 ...