*** empty log message ***

This commit is contained in:
thomas 2005-02-16 18:01:04 +00:00
parent 255fee4a7f
commit e14208f584
3 changed files with 4 additions and 2 deletions

2
NEWS
View File

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

View File

@ -7,7 +7,7 @@ require 'rake/packagetask'
require 'rake/gempackagetask' require 'rake/gempackagetask'
PKG_NAME = 'rubyzip' PKG_NAME = 'rubyzip'
PKG_VERSION = '0.5.7' PKG_VERSION = File.read('lib/zip/zip.rb').match(/\s+VERSION\s*=\s*'(.*)'/)[1]
PKG_FILES = FileList.new PKG_FILES = FileList.new

View File

@ -19,6 +19,8 @@ end
module Zip module Zip
VERSION = '0.5.7'
RUBY_MINOR_VERSION = RUBY_VERSION.split(".")[1].to_i RUBY_MINOR_VERSION = RUBY_VERSION.split(".")[1].to_i
# Ruby 1.7.x compatibility # Ruby 1.7.x compatibility