Skip to content

Instantly share code, notes, and snippets.

@absk1317
Created December 25, 2018 17:06
Show Gist options
  • Save absk1317/12054fa70530a95e61e8e62d4650fb8e to your computer and use it in GitHub Desktop.
Save absk1317/12054fa70530a95e61e8e62d4650fb8e to your computer and use it in GitHub Desktop.
Create zip archive of a folder with ruby
require 'zip'
require 'zip/filesystem'
Zip::File.open(zip_path, Zip::File::CREATE) do |zipfile|
Dir[File.join(directory_to_be_zipped, '*')].each do |file|
zipfile.add(File.basename(file), file)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment