Sha256: f2bd1d0a60aac355322e013a00801d770e43810d9093117c8a8a41cf1e9bfbb7

Contents?: true

Size: 389 Bytes

Versions: 1

Compression:

Stored size: 389 Bytes

Contents

module Zip
  VERSION = '0.9.4'
  RUBY_MINOR_VERSION = RUBY_VERSION.split(".")[1].to_i
  RUNNING_ON_WINDOWS = RbConfig::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
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubyzip-0.9.5 lib/zip/constants.rb