Module: Capistrano::ScmCopyCommand::Utils
- Defined in:
- lib/capistrano/scm_copy_command/utils.rb
Overview
Utils
Class Method Summary collapse
-
.zip(source_directory, destination_file, prefix: nil, working_directory: Dir.getwd, exclude_patterns: [], keep_filesystem_permissions: false, file_permissions: 0664, directory_permissions: 2775) ⇒ Object
Create zip archive from source directory.
Class Method Details
.zip(source_directory, destination_file, prefix: nil, working_directory: Dir.getwd, exclude_patterns: [], keep_filesystem_permissions: false, file_permissions: 0664, directory_permissions: 2775) ⇒ Object
Create zip archive from source directory
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/capistrano/scm_copy_command/utils.rb', line 23 def zip( source_directory, destination_file, prefix: nil, working_directory: Dir.getwd, exclude_patterns: [], keep_filesystem_permissions: false, file_permissions: 0664, directory_permissions: 2775 ) list = Rake::FileList.new(File.join(source_directory, '**', '*')) list.exclude { |f| !File.file? f } exclude_patterns.each { |e| list.exclude e } Zip::File.open(destination_file, Zip::File::CREATE) do |z| list.uniq.each do |filename| paths = [] paths << Pathname.new(prefix) unless prefix.nil? || prefix.empty? paths << Pathname.new(filename).relative_path_from(Pathname.new(working_directory)) z.add(File.join(*paths), File.(filename)) next if z.file.chmod(, File.join(*paths)) if z.file.file? File.join(*paths) z.file.chmod(, File.join(*paths)) if z.file.directory? File.join(*paths) end end end |