Skip to content

Instantly share code, notes, and snippets.

@wolfedale
Created June 8, 2015 16:23
Show Gist options
  • Save wolfedale/e17e72de57013f2fdf52 to your computer and use it in GitHub Desktop.
Save wolfedale/e17e72de57013f2fdf52 to your computer and use it in GitHub Desktop.
unzip
require 'zip'
Zip.on_exists_proc = true
Zip::File.open("Bull and Gate.docx") do |zip_file|
zip_file.each do |entry|
p entry.name
entry.extract(entry.name)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment