class Gym::PackageCommandGenerator

Public Class Methods

app_thinning_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 44
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 48
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 52
def apps_path
  generator.apps_path
end
appstore_info_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 60
def appstore_info_path
  generator.appstore_info_path
end
asset_packs_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 56
def asset_packs_path
  generator.asset_packs_path
end
binary_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 32
def binary_path
  generator.binary_path
end
dsym_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 36
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 67
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 40
def manifest_path
  generator.manifest_path
end
pkg_path() click to toggle source
# File gym/lib/gym/generators/package_command_generator.rb, line 28
def pkg_path
  generator.pkg_path
end