Sha256: 184260c9cf79bd6f825f4249a5392d53ce414cd80488db3a81738b84f6472cac

Contents?: true

Size: 717 Bytes

Versions: 1

Compression:

Stored size: 717 Bytes

Contents

module PodPrebuild
  module ZipUtils
    def self.zip(path, to_dir: nil, name: nil)
      basename = File.basename(path)
      toname = name.nil? ? basename : name
      unless to_dir.nil? 
        FileUtils.mkdir_p(to_dir)
      end
      
      out_path = to_dir.nil? ? "#{toname}.zip" : "#{to_dir}/#{toname}.zip"
      cmd = []
      cmd << "cd" << File.dirname(path)
      cmd << "&& zip -r --symlinks" << out_path << basename
      cmd << "&& cd -"
      `#{cmd.join(" ")}`
    end

    def self.unzip(path, to_dir: nil)
      cmd = []
      cmd << "unzip -oq" << path
      cmd << "-d" << to_dir unless to_dir.nil?
      `#{cmd.join(" ")}`
      if $? != 0 then return false
      return true
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cocoapods-binary-artifactory-cache-0.0.13 lib/command/helper/zip.rb