# File lib/zip/zip_file.rb, line 204 def extract(entry, destPath, &onExistsProc) onExistsProc ||= proc { Zip.options[:on_exists_proc] } foundEntry = get_entry(entry) foundEntry.extract(destPath, &onExistsProc) end