Sha256: 2e486455a0aeac7309e0f0a4b38653de2d3e2fc35aadb94790ac2d600c32836a
Contents?: true
Size: 1.54 KB
Versions: 9
Compression:
Stored size: 1.54 KB
Contents
require 'zip' module FaaStRuby class Package # Initialize with the directory to zip and the location of the output archive. def initialize(input_dir, output_file, exclude: []) @input_dir = input_dir @output_file = output_file @exclude = ['.', '..', '.git', @output_file.split('/').last] + exclude end # Zip the input directory. def build entries = Dir.entries(@input_dir) entries.delete_if {|e| @exclude.include?(e)} FileUtils.rm_f(@output_file) # Make sure file doesn't exist ::Zip::File.open(@output_file, ::Zip::File::CREATE) do |zipfile| write_entries entries, '', zipfile end end private # A helper method to make the recursion work. def write_entries(entries, path, zipfile) entries.each do |e| zipfile_path = path == '' ? e : File.join(path, e) disk_file_path = File.join(@input_dir, zipfile_path) if File.directory?(disk_file_path) recursively_deflate_directory(disk_file_path, zipfile, zipfile_path) next end put_into_archive(disk_file_path, zipfile, zipfile_path) end end def recursively_deflate_directory(disk_file_path, zipfile, zipfile_path) zipfile.mkdir zipfile_path subdir = Dir.entries(disk_file_path) - %w(. ..) write_entries subdir, zipfile_path, zipfile end def put_into_archive(disk_file_path, zipfile, zipfile_path) zipfile.get_output_stream(zipfile_path) do |f| f.write(File.open(disk_file_path, 'rb').read) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems