Go to file
thomas dce2fbc560 zipfilesystem.rb is becoming big and not everyone will want to use that code. Therefore zip.rb no longer requires it. Instead you must require zipfilesystem.rb itself if you want to use it 2003-08-13 08:00:52 +00:00
samples *** empty log message *** 2002-09-15 15:16:39 +00:00
test *** empty log message *** 2002-09-11 22:12:11 +00:00
.cvsignore *** empty log message *** 2002-09-09 21:48:08 +00:00
NEWS ruby-zlib 0.6.0 compatibility fix 2003-08-12 17:13:34 +00:00
README *** empty log message *** 2002-03-31 00:13:01 +00:00
TODO Merged from patch from Kristoffer Lunden. Fixed more 1.8.0 incompatibilites - tests run on 1.8.0 now 2003-08-13 04:37:58 +00:00
alltests.rb *** empty log message *** 2002-09-11 20:22:29 +00:00
filearchive.rb Moved String additions from filearchive.rb to zip.rb (and moved tests along too to ziptest.rb). Added ZipEntry.parentAsString and ZipEntrySet.parent 2002-09-08 14:07:49 +00:00
filearchivetest.rb Moved String additions from filearchive.rb to zip.rb (and moved tests along too to ziptest.rb). Added ZipEntry.parentAsString and ZipEntrySet.parent 2002-09-08 14:07:49 +00:00
fileutils.rb Added (failing) tests for FileArchive.add, added code for creating test files for FileArchive.add tests. Added fileutils.rb, which is borrowed from ruby 1.7.2 2002-07-20 15:13:52 +00:00
install.rb *** empty log message *** 2002-07-19 22:42:38 +00:00
simpledist.rb Added hackish script for creating dist files 2002-05-24 22:41:43 +00:00
zip.rb zipfilesystem.rb is becoming big and not everyone will want to use that code. Therefore zip.rb no longer requires it. Instead you must require zipfilesystem.rb itself if you want to use it 2003-08-13 08:00:52 +00:00
zipfilesystem.rb zipfilesystem.rb is becoming big and not everyone will want to use that code. Therefore zip.rb no longer requires it. Instead you must require zipfilesystem.rb itself if you want to use it 2003-08-13 08:00:52 +00:00
zipfilesystemtest.rb zipfilesystem.rb is becoming big and not everyone will want to use that code. Therefore zip.rb no longer requires it. Instead you must require zipfilesystem.rb itself if you want to use it 2003-08-13 08:00:52 +00:00
ziprequire.rb Implemented ZipFileSystem::ZipFsFile.size 2002-07-26 14:57:30 +00:00
ziprequiretest.rb ziptest now runs without errors with ruby-1.7.2-4 (Andy's latest build) 2002-09-13 18:51:04 +00:00
ziptest.rb Merged from patch from Kristoffer Lunden. Fixed more 1.8.0 incompatibilites - tests run on 1.8.0 now 2003-08-13 04:37:58 +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 below)

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


= Install

ruby install.rb


= 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/

= License

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

= Project page

http://rubyzip.sourceforge.net

= Author

Thomas Sondergaard thomass@deltadata.dk