Sha256: 38cca24e320651222719ce944c9d28cd6c14dc575587e63127fa2eeef700f5b1
Contents?: true
Size: 842 Bytes
Versions: 3
Compression:
Stored size: 842 Bytes
Contents
require 'shellwords' # The concrete implementations require 'gym/generators/package_command_generator_legacy' require 'gym/generators/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 # The generator we need to use for the currently used Xcode version def generator if Xcode.pre_7? or Gym.config[:use_legacy_build_api] PackageCommandGeneratorLegacy else PackageCommandGeneratorXcode7 end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gym-0.8.2 | lib/gym/generators/package_command_generator.rb |
gym-0.8.1 | lib/gym/generators/package_command_generator.rb |
gym-0.8.0 | lib/gym/generators/package_command_generator.rb |