class Gym::PackageCommandGenerator

Public Class Methods

app_thinning_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 36
def app_thinning_path
  generator.app_thinning_path
end
app_thinning_size_report_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 40
def app_thinning_size_report_path
  generator.app_thinning_size_report_path
end
appfile_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 19
def appfile_path
  generator.appfile_path
end
apps_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 44
def apps_path
  generator.apps_path
end
dsym_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 28
def dsym_path
  generator.dsym_path
end
generate() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 15
def generate
  generator.generate
end
generator() click to toggle source

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

# File gym/lib/gym/generators/package_command_generator.rb, line 51
def generator
  PackageCommandGeneratorXcode7
end
ipa_path() click to toggle source

The path in which the ipa file will be available after executing the command

# File gym/lib/gym/generators/package_command_generator.rb, line 24
def ipa_path
  generator.ipa_path
end
manifest_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 32
def manifest_path
  generator.manifest_path
end