class Xambuild::ZipDsym

Public Class Methods

detect_zip_executable() click to toggle source
# File lib/fastlane/plugin/xambuild/helpers/generators/zip_dsym.rb, line 17
def detect_zip_executable
  zip = ENV["XAMBUILD_ZIP_PATH"] || "zip"

  zip
end
generate() click to toggle source
# File lib/fastlane/plugin/xambuild/helpers/generators/zip_dsym.rb, line 4
def generate
  parts = prefix
  parts << detect_zip_executable
  parts += options
  parts += pipe

  parts
end
options() click to toggle source
# File lib/fastlane/plugin/xambuild/helpers/generators/zip_dsym.rb, line 23
def options
  build_dsym_path = CsProj.cache[:build_dsym_path]

  options = []
  options << "-r"
  options << "#{build_dsym_path}.zip"
  options << build_dsym_path

  options
end
pipe() click to toggle source
# File lib/fastlane/plugin/xambuild/helpers/generators/zip_dsym.rb, line 34
def pipe
  pipe = []

  pipe
end
prefix() click to toggle source
# File lib/fastlane/plugin/xambuild/helpers/generators/zip_dsym.rb, line 13
def prefix
  [""]
end