*** empty log message ***
This commit is contained in:
parent
d943bbb311
commit
0ed7902142
6
NEWS
6
NEWS
|
|
@ -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
13
README
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ end
|
|||
|
||||
module Zip
|
||||
|
||||
VERSION = '0.5.7'
|
||||
VERSION = '0.5.8'
|
||||
|
||||
RUBY_MINOR_VERSION = RUBY_VERSION.split(".")[1].to_i
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue