Class: Gym::PackageCommandGenerator
- Inherits:
-
Object
- Object
- Gym::PackageCommandGenerator
- Defined in:
- lib/gym/generators/package_command_generator.rb
Class Method Summary collapse
- .app_thinning_path ⇒ Object
- .app_thinning_size_report_path ⇒ Object
- .appfile_path ⇒ Object
- .apps_path ⇒ Object
- .dsym_path ⇒ Object
- .generate ⇒ Object
-
.generator ⇒ Object
The generator we need to use for the currently used Xcode version.
-
.ipa_path ⇒ Object
The path in which the ipa file will be available after executing the command.
- .manifest_path ⇒ Object
Class Method Details
.app_thinning_path ⇒ Object
36 37 38 |
# File 'lib/gym/generators/package_command_generator.rb', line 36 def app_thinning_path generator.app_thinning_path end |
.app_thinning_size_report_path ⇒ Object
40 41 42 |
# File 'lib/gym/generators/package_command_generator.rb', line 40 def app_thinning_size_report_path generator.app_thinning_size_report_path end |
.appfile_path ⇒ Object
19 20 21 |
# File 'lib/gym/generators/package_command_generator.rb', line 19 def appfile_path generator.appfile_path end |
.apps_path ⇒ Object
44 45 46 |
# File 'lib/gym/generators/package_command_generator.rb', line 44 def apps_path generator.apps_path end |
.dsym_path ⇒ Object
28 29 30 |
# File 'lib/gym/generators/package_command_generator.rb', line 28 def dsym_path generator.dsym_path end |
.generate ⇒ Object
15 16 17 |
# File 'lib/gym/generators/package_command_generator.rb', line 15 def generate generator.generate end |
.generator ⇒ Object
The generator we need to use for the currently used Xcode version
49 50 51 52 53 54 55 |
# File 'lib/gym/generators/package_command_generator.rb', line 49 def generator if Gym.config[:use_legacy_build_api] PackageCommandGeneratorLegacy else PackageCommandGeneratorXcode7 end end |
.ipa_path ⇒ Object
The path in which the ipa file will be available after executing the command
24 25 26 |
# File 'lib/gym/generators/package_command_generator.rb', line 24 def ipa_path generator.ipa_path end |
.manifest_path ⇒ Object
32 33 34 |
# File 'lib/gym/generators/package_command_generator.rb', line 32 def manifest_path generator.manifest_path end |