rubyzip/lib/zip/settings.rb

11 lines
166 B
Ruby
Raw Normal View History

2012-03-13 04:34:35 +08:00
module Zip
class << self
def options
@options ||= {
:on_exists_proc => false,
:continue_on_exists_proc => false
}
2012-03-13 04:34:35 +08:00
end
end
end