2010-11-30 16:27:59 +08:00
|
|
|
module Zip
|
2011-01-07 20:59:51 +08:00
|
|
|
|
|
|
|
VERSION = '0.9.4'
|
|
|
|
|
|
|
|
RUBY_MINOR_VERSION = RUBY_VERSION.split(".")[1].to_i
|
|
|
|
|
|
|
|
RUNNING_ON_WINDOWS = Config::CONFIG['host_os'] =~ /^win|mswin/i
|
|
|
|
|
|
|
|
# Ruby 1.7.x compatibility
|
|
|
|
# In ruby 1.6.x and 1.8.0 reading from an empty stream returns
|
|
|
|
# an empty string the first time and then nil.
|
|
|
|
# not so in 1.7.x
|
|
|
|
EMPTY_FILE_RETURNS_EMPTY_STRING_FIRST = RUBY_MINOR_VERSION != 7
|
|
|
|
|
2010-11-30 16:27:59 +08:00
|
|
|
class Compressor #:nodoc:all
|
|
|
|
def finish
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Copyright (C) 2002, 2003 Thomas Sondergaard
|
|
|
|
# rubyzip is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the ruby license.
|