*** empty log message ***
This commit is contained in:
parent
255fee4a7f
commit
e14208f584
2
NEWS
2
NEWS
|
@ -3,7 +3,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 gems and run unit tests
|
||||
uses Rake to build source packages and gems and run unit tests
|
||||
|
||||
= Version 0.5.6 =
|
||||
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -7,7 +7,7 @@ require 'rake/packagetask'
|
|||
require 'rake/gempackagetask'
|
||||
|
||||
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
|
||||
|
||||
|
|
|
@ -19,6 +19,8 @@ end
|
|||
|
||||
module Zip
|
||||
|
||||
VERSION = '0.5.7'
|
||||
|
||||
RUBY_MINOR_VERSION = RUBY_VERSION.split(".")[1].to_i
|
||||
|
||||
# Ruby 1.7.x compatibility
|
||||
|
|
Loading…
Reference in New Issue