Go to file
thomas aa04dd6a88 *** empty log message *** 2002-02-01 23:09:00 +00:00
.cvsignore Fixed bug reading from empty deflated entry in zip file 2002-01-25 22:29:57 +00:00
COPYING *** empty log message *** 2002-01-05 00:37:45 +00:00
NEWS *** empty log message *** 2002-01-25 23:18:54 +00:00
README.txt Zip write support is now fully functional in the form of ZipOutputStream. 2002-01-25 21:51:28 +00:00
TODO *** empty log message *** 2002-02-01 23:09:00 +00:00
example.rb ZipFile renamed to SimpleZipFile. The new ZipFile will have many more methods 2002-02-01 19:11:10 +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 ZipFile renamed to SimpleZipFile. The new ZipFile will have many more methods 2002-02-01 19:11:10 +00:00
ziptest.rb More test cases - all of them failing, so now there are 18 failing test cases. Three more test cases to implement, then it is time for the production code 2002-02-01 23:01:47 +00:00

README.txt

= 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 installed.

= Resources =

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


= Ruby/zlib =

This library requires ruby/zlib version 0.5.0 or newer.

As of this writing ruby/zlib 0.5.0 is only available as
ruby-zlib-0.5.0-pre3 at http://www.blue.sky.or.jp/atelier/ruby/


= 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