Sha256: 70fedbf447e62ce3891ef5e3b6c3b6d86581e67c4c89c30f347425815b4200c6
Contents?: true
Size: 1.23 KB
Versions: 522
Compression:
Stored size: 1.23 KB
Contents
# encoding: utf-8 # from https://stackoverflow.com/a/9857493/445598 # because of # `incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) (Encoding::CompatibilityError)` require 'shellwords' # The concrete implementations require_relative 'package_command_generator_xcode7' module Gym class PackageCommandGenerator class << self def generate generator.generate end def appfile_path generator.appfile_path end # The path in which the ipa file will be available after executing the command def ipa_path generator.ipa_path end def dsym_path generator.dsym_path end def manifest_path generator.manifest_path end def app_thinning_path generator.app_thinning_path end def app_thinning_size_report_path generator.app_thinning_size_report_path end def apps_path generator.apps_path end # The generator we need to use for the currently used Xcode version # Since we dropped Xcode 6 support, it's just this class, but maybe we'll have # new classes in the future def generator PackageCommandGeneratorXcode7 end end end end
Version data entries
522 entries across 522 versions & 2 rubygems