*** empty log message ***

This commit is contained in:
thomas 2005-03-17 17:11:46 +00:00
parent d943bbb311
commit 0ed7902142
3 changed files with 13 additions and 8 deletions

6
NEWS
View File

@ -1,9 +1,13 @@
= Version 0.5.8
Fixed install script.
= Version 0.5.7
install.rb no longer assumes it is being run from the toplevel source
dir. Directory structure changed to reflect common ruby library
project structure. Migrated from RubyUnit to Test::Unit format. Now
uses Rake to build source packages and gems and run unit tests
uses Rake to build source packages and gems and run unit tests.
= Version 0.5.6

13
README
View File

@ -4,15 +4,16 @@ rubyzip is a ruby library for reading and writing zip files.
= Install
To install from source run
If you have rubygems you can install rubyzip directly from the gem
repository
gem install rubyzip
Otherwise obtain the source (see below) and run
ruby install.rb
If you have Rake installed you can build a rubyzip gem with
rake package
To run the unit tests you need to have test::unit installed.
To run the unit tests you need to have test::unit installed
rake test

View File

@ -19,7 +19,7 @@ end
module Zip
VERSION = '0.5.7'
VERSION = '0.5.8'
RUBY_MINOR_VERSION = RUBY_VERSION.split(".")[1].to_i