2002-03-30 08:52:13 +08:00
|
|
|
= rubyzip
|
2002-01-03 01:48:31 +08:00
|
|
|
|
|
|
|
|
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
|
2002-01-06 06:09:48 +08:00
|
|
|
file format. the actual compression/decompression is handled by
|
2002-03-30 08:52:13 +08:00
|
|
|
zlib. zlib is accessible from ruby thanks to ruby/zlib (see below)
|
2002-01-03 01:48:31 +08:00
|
|
|
|
2002-03-21 04:24:20 +08:00
|
|
|
To run the unit tests you need to have rubyunit or test::unit
|
|
|
|
|
installed.
|
2002-01-03 01:48:31 +08:00
|
|
|
|
2002-03-22 05:12:19 +08:00
|
|
|
|
2002-03-30 08:52:13 +08:00
|
|
|
= Install
|
2002-03-22 05:12:19 +08:00
|
|
|
|
|
|
|
|
ruby install.rb
|
|
|
|
|
|
|
|
|
|
|
2002-03-30 08:52:13 +08:00
|
|
|
= Ruby/zlib
|
2002-01-03 01:48:31 +08:00
|
|
|
|
2002-01-06 06:05:00 +08:00
|
|
|
This library requires ruby/zlib version 0.5.0 or newer.
|
2002-01-05 01:37:38 +08:00
|
|
|
|
2002-03-30 08:52:13 +08:00
|
|
|
* zlib http://www.gzip.org/zlib/
|
2002-03-31 08:13:01 +08:00
|
|
|
* ruby-zlib: http://www.blue.sky.or.jp/atelier/ruby/
|
2002-01-06 06:09:48 +08:00
|
|
|
|
2002-03-30 08:52:13 +08:00
|
|
|
= License
|
2002-01-05 08:37:45 +08:00
|
|
|
|
2002-01-10 05:10:53 +08:00
|
|
|
rubyzip is distributed under the same license as ruby. See
|
|
|
|
|
http://www.ruby-lang.org/en/LICENSE.txt
|
2002-01-06 06:09:48 +08:00
|
|
|
|
2002-03-30 08:52:13 +08:00
|
|
|
= Project page
|
|
|
|
|
|
|
|
|
|
http://rubyzip.sourceforge.net
|
|
|
|
|
|
|
|
|
|
= Author
|
2002-01-05 08:37:45 +08:00
|
|
|
|
|
|
|
|
Thomas Sondergaard thomass@deltadata.dk
|