Class: Gym::PackageCommandGenerator
- Inherits:
-
Object
- Object
- Gym::PackageCommandGenerator
- Defined in:
- gym/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
- .appstore_info_path ⇒ Object
- .asset_packs_path ⇒ Object
- .binary_path ⇒ Object
- .dsym_path ⇒ Object
- .generate ⇒ Object
-
.generator ⇒ Object
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.
-
.ipa_path ⇒ Object
The path in which the ipa file will be available after executing the command.
- .manifest_path ⇒ Object
- .pkg_path ⇒ Object
Class Method Details
.app_thinning_path ⇒ Object
44 45 46 |
# 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 ⇒ Object
48 49 50 |
# 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 ⇒ Object
19 20 21 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 19 def appfile_path generator.appfile_path end |
.apps_path ⇒ Object
52 53 54 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 52 def apps_path generator.apps_path end |
.appstore_info_path ⇒ Object
60 61 62 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 60 def appstore_info_path generator.appstore_info_path end |
.asset_packs_path ⇒ Object
56 57 58 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 56 def asset_packs_path generator.asset_packs_path end |
.binary_path ⇒ Object
32 33 34 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 32 def binary_path generator.binary_path end |
.dsym_path ⇒ Object
36 37 38 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 36 def dsym_path generator.dsym_path end |
.generate ⇒ Object
15 16 17 |
# File 'gym/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 Since we dropped Xcode 6 support, it’s just this class, but maybe we’ll have new classes in the future
67 68 69 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 67 def generator PackageCommandGeneratorXcode7 end |
.ipa_path ⇒ Object
The path in which the ipa file will be available after executing the command
24 25 26 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 24 def ipa_path generator.ipa_path end |
.manifest_path ⇒ Object
40 41 42 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 40 def manifest_path generator.manifest_path end |
.pkg_path ⇒ Object
28 29 30 |
# File 'gym/lib/gym/generators/package_command_generator.rb', line 28 def pkg_path generator.pkg_path end |