module Zip

Constants

EMPTY_FILE_RETURNS_EMPTY_STRING_FIRST

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
RUBY_MINOR_VERSION
RUNNING_ON_WINDOWS
VERSION

Public Class Methods

options() click to toggle source
# File lib/zip/settings.rb, line 3
def options
  @options ||= {
    :on_exists_proc => false,
    :continue_on_exists_proc => false
  }
end