Go to file
thomas 2668152853 Implemented ZipEntrySetTest.testDup and testCompound 2002-09-08 13:28:40 +00:00
samples Moved example.rb to samples/. Added another sample gtkRubyzip.rb 2002-03-29 22:26:20 +00:00
test Changed zipWithDirs.zip so all the entries in it have unix file endings 2002-07-26 14:40:08 +00:00
.cvsignore Added rdoc markup (only #:nodoc:all modifiers) to zip.rb. Made README 'RDoc compliant' 2002-03-30 00:52:13 +00:00
NEWS *** empty log message *** 2002-07-21 16:20:18 +00:00
README *** empty log message *** 2002-03-31 00:13:01 +00:00
TODO Replaced Array with EntrySet for keeping entries in a zip file. Tagged repository before this commit, so this change can be rolled back, if it stinks 2002-09-08 13:17:17 +00:00
alltests.rb Implemented ZipFsFile.mtime 2002-07-26 20:58:51 +00:00
filearchive.rb Implemented ZipFileSystem::ZipFsFile.size 2002-07-26 14:57:30 +00:00
filearchivetest.rb Implemented ZipFileSystem::ZipFsFile.size 2002-07-26 14:57:30 +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 Replaced Array with EntrySet for keeping entries in a zip file. Tagged repository before this commit, so this change can be rolled back, if it stinks 2002-09-08 13:17:17 +00:00
zipfilesystem.rb Implemented ZipFsFile.new 2002-07-27 13:25:16 +00:00
zipfilesystemtest.rb Implemented ZipFsFile.new 2002-07-27 13:25:16 +00:00
ziprequire.rb Implemented ZipFileSystem::ZipFsFile.size 2002-07-26 14:57:30 +00:00
ziprequiretest.rb *** empty log message *** 2002-07-20 00:20:33 +00:00
ziptest.rb Implemented ZipEntrySetTest.testDup and testCompound 2002-09-08 13:28:40 +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