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