Go to file
thomas 7164459b2e *** empty log message *** 2002-03-20 20:59:31 +00:00
.cvsignore *** empty log message *** 2002-03-20 20:00:52 +00:00
NEWS *** empty log message *** 2002-03-20 20:59:31 +00:00
README Removed COPYING, renamed README.txt to README. Updated README 2002-03-20 20:24:20 +00:00
TODO Directories can now be added (not recursively, the directory entry itself. Directories are recognized by a empty entries with a trailing /. The purpose of storing them explicitly in the zip file is to be able to store permission and ownership information 2002-03-20 19:56:00 +00:00
example.rb Fixed example.rb added example that shows zip file manipulation with Zip::ZipFile 2002-03-20 20:18:35 +00:00
file1.txt Initial revision 2002-01-02 17:48:31 +00:00
file1.txt.deflatedData deflated data extracted from a zip file. contains file1.txt 2002-01-05 21:21:56 +00:00
testDirectory.bin ZipCentralDirectoryEntryTest now runs 2002-01-04 20:51:24 +00:00
zip.rb Directories can now be added (not recursively, the directory entry itself. Directories are recognized by a empty entries with a trailing /. The purpose of storing them explicitly in the zip file is to be able to store permission and ownership information 2002-03-20 19:56:00 +00:00
ziptest.rb Directories can now be added (not recursively, the directory entry itself. Directories are recognized by a empty entries with a trailing /. The purpose of storing them explicitly in the zip file is to be able to store permission and ownership information 2002-03-20 19:56:00 +00:00

README

= rubyzip =

rubyzip is a ruby library for reading and writing zip (pkzip format)
files, with the restriction that only uncompressed and deflated zip
entries are supported. All this library does is handling of the zip
file format. the actual compression/decompression is handled by
zlib. zlib is accessible from ruby thanks to ruby/zlib (see resources)

To run the unit tests you need to have rubyunit or test::unit
installed.

= Ruby/zlib =

This library requires ruby/zlib version 0.5.0 or newer.

zlib http://www.gzip.org/zlib/
ruby-zlib: http://www.blue.sky.or.jp/atelier/#ruby-zlib

= LICENSE =

rubyzip is distributed under the same license as ruby. See
http://www.ruby-lang.org/en/LICENSE.txt

= AUTHOR =

Thomas Sondergaard thomass@deltadata.dk