fastlane 2.74.0.beta.20180106010004 → 2.74.0.beta.20180107010004

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (310) hide show
  1. checksums.yaml +4 -4
  2. data/cert/lib/cert.rb +3 -17
  3. data/cert/lib/cert/commands_generator.rb +5 -0
  4. data/cert/lib/cert/module.rb +14 -0
  5. data/cert/lib/cert/options.rb +4 -2
  6. data/cert/lib/cert/runner.rb +7 -0
  7. data/credentials_manager/lib/credentials_manager.rb +3 -9
  8. data/credentials_manager/lib/credentials_manager/account_manager.rb +2 -0
  9. data/credentials_manager/lib/credentials_manager/appfile_config.rb +2 -0
  10. data/credentials_manager/lib/credentials_manager/cli.rb +2 -0
  11. data/deliver/lib/deliver.rb +15 -31
  12. data/deliver/lib/deliver/app_screenshot.rb +2 -0
  13. data/deliver/lib/deliver/commands_generator.rb +6 -1
  14. data/deliver/lib/deliver/detect_values.rb +9 -1
  15. data/deliver/lib/deliver/download_screenshots.rb +2 -0
  16. data/deliver/lib/deliver/generate_summary.rb +4 -0
  17. data/deliver/lib/deliver/html_generator.rb +2 -0
  18. data/deliver/lib/deliver/loader.rb +4 -0
  19. data/deliver/lib/deliver/module.rb +16 -0
  20. data/deliver/lib/deliver/options.rb +5 -2
  21. data/deliver/lib/deliver/runner.rb +14 -1
  22. data/deliver/lib/deliver/setup.rb +6 -2
  23. data/deliver/lib/deliver/submit_for_review.rb +2 -0
  24. data/deliver/lib/deliver/upload_assets.rb +2 -0
  25. data/deliver/lib/deliver/upload_metadata.rb +4 -0
  26. data/deliver/lib/deliver/upload_price_tier.rb +2 -0
  27. data/deliver/lib/deliver/upload_screenshots.rb +6 -0
  28. data/fastlane/lib/fastlane/actions/slack.rb +16 -11
  29. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +3 -0
  30. data/fastlane/lib/fastlane/version.rb +1 -1
  31. data/fastlane_core/lib/fastlane_core.rb +42 -77
  32. data/fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb +2 -0
  33. data/fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb +2 -1
  34. data/fastlane_core/lib/fastlane_core/analytics/analytics_ingester_client.rb +4 -0
  35. data/fastlane_core/lib/fastlane_core/analytics/analytics_session.rb +3 -1
  36. data/fastlane_core/lib/fastlane_core/analytics/app_identifier_guesser.rb +3 -3
  37. data/fastlane_core/lib/fastlane_core/android_package_name_guesser.rb +5 -0
  38. data/fastlane_core/lib/fastlane_core/build_watcher.rb +4 -0
  39. data/fastlane_core/lib/fastlane_core/cert_checker.rb +2 -0
  40. data/fastlane_core/lib/fastlane_core/command_executor.rb +4 -0
  41. data/fastlane_core/lib/fastlane_core/configuration/commander_generator.rb +4 -2
  42. data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +6 -1
  43. data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +5 -3
  44. data/fastlane_core/lib/fastlane_core/configuration/configuration_file.rb +3 -0
  45. data/fastlane_core/lib/fastlane_core/crash_reporter/crash_report_generator.rb +2 -0
  46. data/fastlane_core/lib/fastlane_core/crash_reporter/crash_reporter.rb +7 -1
  47. data/fastlane_core/lib/fastlane_core/device_manager.rb +6 -0
  48. data/fastlane_core/lib/fastlane_core/fastlane_folder.rb +2 -0
  49. data/fastlane_core/lib/fastlane_core/feature/feature.rb +2 -0
  50. data/fastlane_core/lib/fastlane_core/features.rb +2 -0
  51. data/fastlane_core/lib/fastlane_core/helper.rb +5 -1
  52. data/fastlane_core/lib/fastlane_core/ios_app_identifier_guesser.rb +5 -0
  53. data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +3 -1
  54. data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +4 -0
  55. data/fastlane_core/lib/fastlane_core/itunes_search_api.rb +2 -0
  56. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +3 -0
  57. data/fastlane_core/lib/fastlane_core/keychain_importer.rb +2 -0
  58. data/fastlane_core/lib/fastlane_core/module.rb +31 -0
  59. data/fastlane_core/lib/fastlane_core/pkg_file_analyser.rb +2 -0
  60. data/fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb +4 -0
  61. data/fastlane_core/lib/fastlane_core/print_table.rb +3 -0
  62. data/fastlane_core/lib/fastlane_core/project.rb +3 -0
  63. data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +2 -0
  64. data/fastlane_core/lib/fastlane_core/swag.rb +3 -0
  65. data/fastlane_core/lib/fastlane_core/test_parser.rb +7 -0
  66. data/fastlane_core/lib/fastlane_core/tool_collector.rb +2 -0
  67. data/fastlane_core/lib/fastlane_core/ui/errors.rb +1 -0
  68. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb +2 -0
  69. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_crash.rb +2 -0
  70. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb +2 -0
  71. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb +2 -0
  72. data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +10 -1
  73. data/fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb +4 -1
  74. data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +6 -0
  75. data/fastlane_core/lib/fastlane_core/ui/interface.rb +3 -0
  76. data/fastlane_core/lib/fastlane_core/ui/ui.rb +5 -5
  77. data/fastlane_core/lib/fastlane_core/update_checker/changelog.rb +2 -2
  78. data/fastlane_core/lib/fastlane_core/update_checker/update_checker.rb +5 -3
  79. data/frameit/lib/frameit.rb +0 -40
  80. data/frameit/lib/frameit/commands_generator.rb +7 -0
  81. data/frameit/lib/frameit/config_parser.rb +2 -0
  82. data/frameit/lib/frameit/dependency_checker.rb +2 -0
  83. data/frameit/lib/frameit/editor.rb +9 -0
  84. data/frameit/lib/frameit/frame_downloader.rb +5 -0
  85. data/frameit/lib/frameit/mac_editor.rb +3 -0
  86. data/frameit/lib/frameit/module.rb +40 -0
  87. data/frameit/lib/frameit/offsets.rb +3 -0
  88. data/frameit/lib/frameit/options.rb +4 -0
  89. data/frameit/lib/frameit/runner.rb +5 -1
  90. data/frameit/lib/frameit/screenshot.rb +9 -0
  91. data/frameit/lib/frameit/strings_parser.rb +2 -0
  92. data/frameit/lib/frameit/template_finder.rb +6 -0
  93. data/frameit/lib/frameit/trim_box.rb +2 -0
  94. data/gym/lib/gym.rb +9 -46
  95. data/gym/lib/gym/code_signing_mapping.rb +2 -0
  96. data/gym/lib/gym/commands_generator.rb +6 -3
  97. data/gym/lib/gym/detect_values.rb +4 -1
  98. data/gym/lib/gym/error_handler.rb +3 -0
  99. data/gym/lib/gym/generators/build_command_generator.rb +1 -0
  100. data/gym/lib/gym/generators/package_command_generator.rb +1 -1
  101. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +5 -0
  102. data/gym/lib/gym/manager.rb +4 -0
  103. data/gym/lib/gym/module.rb +36 -0
  104. data/gym/lib/gym/options.rb +3 -2
  105. data/gym/lib/gym/runner.rb +8 -0
  106. data/gym/lib/gym/xcode.rb +2 -0
  107. data/gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb +3 -0
  108. data/match/lib/match.rb +12 -37
  109. data/match/lib/match/change_password.rb +4 -0
  110. data/match/lib/match/commands_generator.rb +9 -3
  111. data/match/lib/match/encrypt.rb +4 -0
  112. data/match/lib/match/generator.rb +7 -2
  113. data/match/lib/match/git_helper.rb +5 -0
  114. data/match/lib/match/module.rb +23 -0
  115. data/match/lib/match/nuke.rb +8 -0
  116. data/match/lib/match/options.rb +3 -2
  117. data/match/lib/match/runner.rb +11 -0
  118. data/match/lib/match/setup.rb +2 -0
  119. data/match/lib/match/spaceship_ensure.rb +5 -2
  120. data/match/lib/match/table_printer.rb +6 -0
  121. data/match/lib/match/utils.rb +3 -0
  122. data/pem/lib/pem.rb +3 -20
  123. data/pem/lib/pem/commands_generator.rb +4 -0
  124. data/pem/lib/pem/manager.rb +3 -0
  125. data/pem/lib/pem/module.rb +18 -0
  126. data/pem/lib/pem/options.rb +4 -2
  127. data/pilot/lib/pilot.rb +1 -14
  128. data/pilot/lib/pilot/build_manager.rb +6 -0
  129. data/pilot/lib/pilot/commands_generator.rb +8 -2
  130. data/pilot/lib/pilot/manager.rb +10 -3
  131. data/pilot/lib/pilot/module.rb +9 -0
  132. data/pilot/lib/pilot/options.rb +4 -2
  133. data/pilot/lib/pilot/tester_exporter.rb +6 -3
  134. data/pilot/lib/pilot/tester_importer.rb +3 -1
  135. data/pilot/lib/pilot/tester_manager.rb +6 -5
  136. data/precheck/lib/precheck.rb +2 -22
  137. data/precheck/lib/precheck/commands_generator.rb +8 -1
  138. data/precheck/lib/precheck/module.rb +21 -0
  139. data/precheck/lib/precheck/options.rb +4 -3
  140. data/precheck/lib/precheck/rule.rb +7 -4
  141. data/precheck/lib/precheck/rule_processor.rb +5 -2
  142. data/precheck/lib/precheck/rules/abstract_text_match_rule.rb +1 -1
  143. data/precheck/lib/precheck/rules/all.rb +1 -0
  144. data/precheck/lib/precheck/rules/copyright_date_rule.rb +1 -2
  145. data/precheck/lib/precheck/rules/curse_words_rule.rb +2 -1
  146. data/precheck/lib/precheck/rules/custom_text_rule.rb +1 -2
  147. data/precheck/lib/precheck/rules/free_stuff_iap_rule.rb +1 -2
  148. data/precheck/lib/precheck/rules/future_functionality_rule.rb +1 -2
  149. data/precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb +1 -2
  150. data/precheck/lib/precheck/rules/other_platforms_rule.rb +1 -2
  151. data/precheck/lib/precheck/rules/placeholder_words_rule.rb +1 -2
  152. data/precheck/lib/precheck/rules/test_words_rule.rb +1 -2
  153. data/precheck/lib/precheck/rules/unreachable_urls_rule.rb +3 -1
  154. data/precheck/lib/precheck/runner.rb +6 -4
  155. data/produce/lib/produce.rb +6 -21
  156. data/produce/lib/produce/commands_generator.rb +5 -0
  157. data/produce/lib/produce/developer_center.rb +1 -0
  158. data/produce/lib/produce/group.rb +1 -0
  159. data/produce/lib/produce/itunes_connect.rb +5 -3
  160. data/produce/lib/produce/manager.rb +4 -0
  161. data/produce/lib/produce/merchant.rb +1 -0
  162. data/produce/lib/produce/module.rb +14 -0
  163. data/produce/lib/produce/options.rb +4 -2
  164. data/produce/lib/produce/service.rb +3 -0
  165. data/scan/lib/scan.rb +10 -40
  166. data/scan/lib/scan/commands_generator.rb +6 -2
  167. data/scan/lib/scan/detect_values.rb +4 -0
  168. data/scan/lib/scan/error_handler.rb +2 -0
  169. data/scan/lib/scan/manager.rb +4 -0
  170. data/scan/lib/scan/module.rb +32 -0
  171. data/scan/lib/scan/options.rb +3 -2
  172. data/scan/lib/scan/runner.rb +9 -0
  173. data/scan/lib/scan/slack_poster.rb +2 -0
  174. data/scan/lib/scan/test_command_generator.rb +2 -0
  175. data/scan/lib/scan/test_result_parser.rb +2 -0
  176. data/scan/lib/scan/xcpretty_reporter_options_generator.rb +2 -0
  177. data/screengrab/lib/screengrab.rb +7 -33
  178. data/screengrab/lib/screengrab/android_environment.rb +2 -0
  179. data/screengrab/lib/screengrab/commands_generator.rb +8 -0
  180. data/screengrab/lib/screengrab/dependency_checker.rb +2 -0
  181. data/screengrab/lib/screengrab/module.rb +24 -0
  182. data/screengrab/lib/screengrab/options.rb +3 -2
  183. data/screengrab/lib/screengrab/reports_generator.rb +3 -1
  184. data/screengrab/lib/screengrab/runner.rb +4 -0
  185. data/screengrab/lib/screengrab/setup.rb +2 -0
  186. data/sigh/lib/sigh.rb +4 -19
  187. data/sigh/lib/sigh/commands_generator.rb +5 -0
  188. data/sigh/lib/sigh/download_all.rb +5 -0
  189. data/sigh/lib/sigh/local_manage.rb +5 -0
  190. data/sigh/lib/sigh/manager.rb +3 -2
  191. data/sigh/lib/sigh/module.rb +16 -0
  192. data/sigh/lib/sigh/options.rb +3 -2
  193. data/sigh/lib/sigh/repair.rb +4 -0
  194. data/sigh/lib/sigh/resign.rb +3 -0
  195. data/sigh/lib/sigh/runner.rb +4 -0
  196. data/snapshot/lib/snapshot.rb +19 -61
  197. data/snapshot/lib/snapshot/collector.rb +5 -0
  198. data/snapshot/lib/snapshot/commands_generator.rb +4 -1
  199. data/snapshot/lib/snapshot/dependency_checker.rb +27 -23
  200. data/snapshot/lib/snapshot/detect_values.rb +7 -0
  201. data/snapshot/lib/snapshot/error_handler.rb +2 -0
  202. data/snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb +2 -0
  203. data/snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb +2 -0
  204. data/snapshot/lib/snapshot/latest_os_version.rb +5 -2
  205. data/snapshot/lib/snapshot/module.rb +44 -0
  206. data/snapshot/lib/snapshot/options.rb +11 -2
  207. data/snapshot/lib/snapshot/reports_generator.rb +4 -2
  208. data/snapshot/lib/snapshot/reset_simulators.rb +3 -0
  209. data/snapshot/lib/snapshot/runner.rb +10 -0
  210. data/snapshot/lib/snapshot/screenshot_flatten.rb +2 -0
  211. data/snapshot/lib/snapshot/screenshot_rotate.rb +4 -1
  212. data/snapshot/lib/snapshot/setup.rb +2 -0
  213. data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +0 -1
  214. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +27 -27
  215. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +8 -0
  216. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_xcode_8.rb +4 -1
  217. data/snapshot/lib/snapshot/test_command_generator.rb +2 -1
  218. data/snapshot/lib/snapshot/test_command_generator_base.rb +10 -4
  219. data/snapshot/lib/snapshot/test_command_generator_xcode_8.rb +3 -1
  220. data/snapshot/lib/snapshot/update.rb +3 -0
  221. data/spaceship/lib/spaceship.rb +14 -36
  222. data/spaceship/lib/spaceship/client.rb +26 -76
  223. data/spaceship/lib/spaceship/commands_generator.rb +4 -2
  224. data/spaceship/lib/spaceship/du/du_client.rb +3 -0
  225. data/spaceship/lib/spaceship/du/upload_file.rb +2 -0
  226. data/spaceship/lib/spaceship/errors.rb +67 -0
  227. data/spaceship/lib/spaceship/globals.rb +1 -1
  228. data/spaceship/lib/spaceship/helper/plist_middleware.rb +1 -1
  229. data/spaceship/lib/spaceship/helper/rels_middleware.rb +2 -0
  230. data/spaceship/lib/spaceship/launcher.rb +7 -5
  231. data/spaceship/lib/spaceship/module.rb +4 -0
  232. data/spaceship/lib/spaceship/playground.rb +3 -0
  233. data/spaceship/lib/spaceship/portal/app.rb +3 -0
  234. data/spaceship/lib/spaceship/portal/app_group.rb +2 -0
  235. data/spaceship/lib/spaceship/portal/app_service.rb +38 -290
  236. data/spaceship/lib/spaceship/portal/certificate.rb +3 -1
  237. data/spaceship/lib/spaceship/portal/device.rb +5 -3
  238. data/spaceship/lib/spaceship/portal/invite.rb +2 -0
  239. data/spaceship/lib/spaceship/portal/key.rb +2 -0
  240. data/spaceship/lib/spaceship/portal/legacy_wrapper.rb +21 -0
  241. data/spaceship/lib/spaceship/portal/merchant.rb +2 -0
  242. data/spaceship/lib/spaceship/portal/passbook.rb +2 -0
  243. data/spaceship/lib/spaceship/portal/person.rb +2 -0
  244. data/spaceship/lib/spaceship/portal/persons.rb +3 -0
  245. data/spaceship/lib/spaceship/portal/portal_base.rb +3 -0
  246. data/spaceship/lib/spaceship/portal/portal_client.rb +37 -23
  247. data/spaceship/lib/spaceship/portal/provisioning_profile.rb +27 -20
  248. data/spaceship/lib/spaceship/portal/provisioning_profile_template.rb +2 -0
  249. data/spaceship/lib/spaceship/portal/spaceship.rb +13 -10
  250. data/spaceship/lib/spaceship/portal/ui/select_team.rb +2 -0
  251. data/spaceship/lib/spaceship/portal/website_push.rb +2 -0
  252. data/spaceship/lib/spaceship/spaceauth_runner.rb +4 -2
  253. data/spaceship/lib/spaceship/test_flight.rb +0 -1
  254. data/spaceship/lib/spaceship/test_flight/app_test_info.rb +4 -0
  255. data/spaceship/lib/spaceship/test_flight/base.rb +22 -17
  256. data/spaceship/lib/spaceship/test_flight/beta_review_info.rb +2 -0
  257. data/spaceship/lib/spaceship/test_flight/build.rb +211 -203
  258. data/spaceship/lib/spaceship/test_flight/build_trains.rb +4 -1
  259. data/spaceship/lib/spaceship/test_flight/client.rb +255 -251
  260. data/spaceship/lib/spaceship/test_flight/export_compliance.rb +2 -0
  261. data/spaceship/lib/spaceship/test_flight/group.rb +2 -0
  262. data/spaceship/lib/spaceship/test_flight/test_info.rb +2 -0
  263. data/spaceship/lib/spaceship/test_flight/tester.rb +114 -110
  264. data/spaceship/lib/spaceship/tunes/app_details.rb +5 -1
  265. data/spaceship/lib/spaceship/tunes/app_image.rb +2 -0
  266. data/spaceship/lib/spaceship/tunes/app_ratings.rb +2 -68
  267. data/spaceship/lib/spaceship/tunes/app_review.rb +55 -0
  268. data/spaceship/lib/spaceship/tunes/app_screenshot.rb +2 -0
  269. data/spaceship/lib/spaceship/tunes/app_submission.rb +1 -0
  270. data/spaceship/lib/spaceship/tunes/app_trailer.rb +2 -0
  271. data/spaceship/lib/spaceship/tunes/app_version.rb +11 -0
  272. data/spaceship/lib/spaceship/tunes/app_version_generated_promocodes.rb +2 -0
  273. data/spaceship/lib/spaceship/tunes/app_version_history.rb +2 -0
  274. data/spaceship/lib/spaceship/tunes/app_version_promocodes.rb +2 -0
  275. data/spaceship/lib/spaceship/tunes/app_version_ref.rb +2 -0
  276. data/spaceship/lib/spaceship/tunes/app_version_states_history.rb +2 -0
  277. data/spaceship/lib/spaceship/tunes/application.rb +18 -6
  278. data/spaceship/lib/spaceship/tunes/availability.rb +2 -0
  279. data/spaceship/lib/spaceship/tunes/build.rb +2 -0
  280. data/spaceship/lib/spaceship/tunes/build_details.rb +2 -0
  281. data/spaceship/lib/spaceship/tunes/build_train.rb +5 -1
  282. data/spaceship/lib/spaceship/tunes/developer_response.rb +23 -0
  283. data/spaceship/lib/spaceship/tunes/errors.rb +17 -0
  284. data/spaceship/lib/spaceship/tunes/iap_detail.rb +5 -0
  285. data/spaceship/lib/spaceship/tunes/iap_families.rb +1 -0
  286. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +1 -0
  287. data/spaceship/lib/spaceship/tunes/iap_family_list.rb +1 -0
  288. data/spaceship/lib/spaceship/tunes/iap_list.rb +3 -0
  289. data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_info.rb +46 -0
  290. data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_tier.rb +2 -41
  291. data/spaceship/lib/spaceship/tunes/language_converter.rb +2 -0
  292. data/spaceship/lib/spaceship/tunes/legacy_wrapper.rb +13 -0
  293. data/spaceship/lib/spaceship/tunes/member.rb +3 -0
  294. data/spaceship/lib/spaceship/tunes/members.rb +2 -0
  295. data/spaceship/lib/spaceship/tunes/pricing_info.rb +42 -0
  296. data/spaceship/lib/spaceship/tunes/pricing_tier.rb +2 -37
  297. data/spaceship/lib/spaceship/tunes/recovery_device.rb +2 -0
  298. data/spaceship/lib/spaceship/tunes/sandbox_tester.rb +2 -0
  299. data/spaceship/lib/spaceship/tunes/spaceship.rb +2 -0
  300. data/spaceship/lib/spaceship/tunes/territory.rb +2 -0
  301. data/spaceship/lib/spaceship/tunes/transit_app_file.rb +2 -0
  302. data/spaceship/lib/spaceship/tunes/tunes.rb +34 -39
  303. data/spaceship/lib/spaceship/tunes/tunes_base.rb +2 -0
  304. data/spaceship/lib/spaceship/tunes/tunes_client.rb +20 -14
  305. data/spaceship/lib/spaceship/tunes/user_detail.rb +2 -0
  306. data/spaceship/lib/spaceship/tunes/version_set.rb +2 -0
  307. data/spaceship/lib/spaceship/two_step_client.rb +5 -1
  308. data/spaceship/lib/spaceship/ui.rb +7 -7
  309. data/supply/lib/supply/options.rb +2 -2
  310. metadata +31 -6
@@ -1,3 +1,5 @@
1
+ require_relative 'module'
2
+
1
3
  module Match
2
4
  class Setup
3
5
  def run(path, is_swift_fastfile: false)
@@ -1,10 +1,13 @@
1
+ require 'spaceship'
2
+ require_relative 'module'
3
+
1
4
  module Match
2
5
  # Ensures the certificate and profiles are also available on iTunes Connect
3
6
  class SpaceshipEnsure
4
7
  def initialize(user)
5
8
  # We'll try to manually fetch the password
6
9
  # to tell the user that a password is optional
7
- require 'credentials_manager'
10
+ require 'credentials_manager/account_manager'
8
11
 
9
12
  keychain_entry = CredentialsManager::AccountManager.new(user: user)
10
13
 
@@ -24,7 +27,7 @@ module Match
24
27
  found = Spaceship.app.find(app_identifier)
25
28
  return if found
26
29
 
27
- require 'sigh'
30
+ require 'sigh/runner'
28
31
  Sigh::Runner.new.print_produce_command({
29
32
  username: username,
30
33
  app_identifier: app_identifier
@@ -1,3 +1,9 @@
1
+ require 'terminal-table'
2
+
3
+ require 'fastlane_core/print_table'
4
+ require_relative 'module'
5
+ require_relative 'utils'
6
+
1
7
  module Match
2
8
  class TablePrinter
3
9
  # logs public key's name, user, organisation, country, availability dates
@@ -1,3 +1,6 @@
1
+ require 'fastlane_core/keychain_importer'
2
+ require_relative 'module'
3
+
1
4
  module Match
2
5
  class Utils
3
6
  def self.import(item_path, keychain, password: "")
data/pem/lib/pem.rb CHANGED
@@ -1,21 +1,4 @@
1
- require 'pem/manager'
2
- require 'pem/options'
1
+ require_relative 'pem/manager'
2
+ require_relative 'pem/options'
3
3
 
4
- require 'fastlane_core'
5
-
6
- module PEM
7
- # Use this to just setup the configuration attribute and set it later somewhere else
8
- class << self
9
- attr_accessor :config
10
- end
11
-
12
- TMP_FOLDER = "/tmp/PEM/"
13
- FileUtils.mkdir_p TMP_FOLDER
14
-
15
- ENV['FASTLANE_TEAM_ID'] ||= ENV["PEM_TEAM_ID"]
16
- ENV['DELIVER_USER'] ||= ENV["PEM_USERNAME"]
17
-
18
- Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
19
- UI = FastlaneCore::UI
20
- ROOT = Pathname.new(File.expand_path('../..', __FILE__))
21
- end
4
+ require_relative 'pem/module'
@@ -1,5 +1,9 @@
1
1
  require 'commander'
2
+
2
3
  require 'fastlane/version'
4
+ require 'fastlane_core/configuration/configuration'
5
+ require_relative 'options'
6
+ require_relative 'manager'
3
7
 
4
8
  HighLine.track_eof = false
5
9
 
@@ -1,5 +1,8 @@
1
1
  require 'pathname'
2
+
2
3
  require 'spaceship'
4
+ require 'fastlane_core/print_table'
5
+ require_relative 'module'
3
6
 
4
7
  module PEM
5
8
  # Creates the push profile and stores it in the correct location
@@ -0,0 +1,18 @@
1
+ require 'fastlane_core/helper'
2
+
3
+ module PEM
4
+ # Use this to just setup the configuration attribute and set it later somewhere else
5
+ class << self
6
+ attr_accessor :config
7
+ end
8
+
9
+ TMP_FOLDER = "/tmp/PEM/"
10
+ FileUtils.mkdir_p TMP_FOLDER
11
+
12
+ ENV['FASTLANE_TEAM_ID'] ||= ENV["PEM_TEAM_ID"]
13
+ ENV['DELIVER_USER'] ||= ENV["PEM_USERNAME"]
14
+
15
+ Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
16
+ UI = FastlaneCore::UI
17
+ ROOT = Pathname.new(File.expand_path('../../..', __FILE__))
18
+ end
@@ -1,5 +1,7 @@
1
- require 'fastlane_core'
2
- require 'credentials_manager'
1
+ require 'fastlane_core/configuration/config_item'
2
+ require 'credentials_manager/appfile_config'
3
+
4
+ require_relative 'module'
3
5
 
4
6
  module PEM
5
7
  class Options
data/pilot/lib/pilot.rb CHANGED
@@ -1,7 +1,3 @@
1
- # fastlane_core must be required before 'pilot/features' which depends on it for FastlaneCore::Feature
2
- require "fastlane_core"
3
-
4
- require "json"
5
1
  require 'pilot/features'
6
2
  require "pilot/options"
7
3
  require "pilot/manager"
@@ -10,13 +6,4 @@ require "pilot/tester_manager"
10
6
  require "pilot/tester_importer"
11
7
  require "pilot/tester_exporter"
12
8
 
13
- require "spaceship"
14
- require "terminal-table"
15
-
16
- module Pilot
17
- Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
18
- UI = FastlaneCore::UI
19
- ROOT = Pathname.new(File.expand_path('../..', __FILE__))
20
-
21
- DESCRIPTION = "The best way to manage your TestFlight testers and builds from your terminal"
22
- end
9
+ require_relative 'pilot/module'
@@ -1,4 +1,10 @@
1
1
  require 'tmpdir'
2
+ require 'terminal-table'
3
+
4
+ require 'fastlane_core/itunes_transporter'
5
+ require 'fastlane_core/build_watcher'
6
+ require 'fastlane_core/ipa_upload_package_builder'
7
+ require_relative 'manager'
2
8
 
3
9
  module Pilot
4
10
  class BuildManager < Manager
@@ -1,6 +1,12 @@
1
1
  require "commander"
2
- require "pilot/options"
3
- require "fastlane_core"
2
+
3
+ require 'fastlane_core/configuration/configuration'
4
+ require_relative 'module'
5
+ require_relative 'tester_importer'
6
+ require_relative 'tester_exporter'
7
+ require_relative 'tester_manager'
8
+ require_relative 'build_manager'
9
+ require_relative 'options'
4
10
 
5
11
  HighLine.track_eof = false
6
12
 
@@ -1,4 +1,11 @@
1
- require "fastlane_core"
1
+ require 'credentials_manager/appfile_config'
2
+
3
+ require 'fastlane_core/print_table'
4
+ require 'spaceship/tunes/tunes'
5
+ require 'spaceship/tunes/members'
6
+ require 'spaceship/test_flight'
7
+ require 'fastlane_core/ipa_file_analyser'
8
+ require_relative 'module'
2
9
 
3
10
  module Pilot
4
11
  class Manager
@@ -21,7 +28,7 @@ module Pilot
21
28
  def app
22
29
  @apple_id ||= fetch_app_id
23
30
 
24
- @app ||= Spaceship::Application.find(@apple_id)
31
+ @app ||= Spaceship::Tunes::Application.find(@apple_id)
25
32
  unless @app
26
33
  UI.user_error!("Could not find app with #{(config[:apple_id] || config[:app_identifier])}")
27
34
  end
@@ -39,7 +46,7 @@ module Pilot
39
46
  config[:app_identifier] = fetch_app_identifier
40
47
 
41
48
  if config[:app_identifier]
42
- @app ||= Spaceship::Application.find(config[:app_identifier])
49
+ @app ||= Spaceship::Tunes::Application.find(config[:app_identifier])
43
50
  UI.user_error!("Couldn't find app '#{config[:app_identifier]}' on the account of '#{config[:username]}' on iTunes Connect") unless @app
44
51
  app_id ||= @app.apple_id
45
52
  end
@@ -0,0 +1,9 @@
1
+ require 'fastlane_core/helper'
2
+
3
+ module Pilot
4
+ Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
5
+ UI = FastlaneCore::UI
6
+ ROOT = Pathname.new(File.expand_path('../../..', __FILE__))
7
+
8
+ DESCRIPTION = "The best way to manage your TestFlight testers and builds from your terminal"
9
+ end
@@ -1,5 +1,7 @@
1
- require "fastlane_core"
2
- require "credentials_manager"
1
+ require 'fastlane_core/configuration/config_item'
2
+ require 'credentials_manager/appfile_config'
3
+
4
+ require_relative 'module'
3
5
 
4
6
  module Pilot
5
7
  class Options
@@ -1,5 +1,8 @@
1
- require "fastlane_core"
2
- require "pilot/tester_util"
1
+ require 'spaceship/tunes/application'
2
+ require 'spaceship/test_flight/tester'
3
+ require_relative 'tester_util'
4
+ require_relative 'module'
5
+ require_relative 'manager'
3
6
 
4
7
  module Pilot
5
8
  class TesterExporter < Manager
@@ -11,7 +14,7 @@ module Pilot
11
14
 
12
15
  app_filter = (config[:apple_id] || config[:app_identifier])
13
16
  if app_filter
14
- app = Spaceship::Application.find(app_filter)
17
+ app = Spaceship::Tunes::Application.find(app_filter)
15
18
 
16
19
  testers = Spaceship::TestFlight::Tester.all(app_id: app.apple_id)
17
20
  else
@@ -1,4 +1,6 @@
1
- require "fastlane_core"
1
+ require_relative 'module'
2
+ require_relative 'manager'
3
+ require_relative 'tester_manager'
2
4
 
3
5
  module Pilot
4
6
  class TesterImporter < Manager
@@ -1,7 +1,8 @@
1
- require "fastlane_core"
2
- require "pilot/tester_util"
3
1
  require 'terminal-table'
4
2
 
3
+ require_relative 'manager'
4
+ require_relative 'tester_util'
5
+
5
6
  module Pilot
6
7
  class TesterManager < Manager
7
8
  def add_tester(options)
@@ -98,7 +99,7 @@ module Pilot
98
99
 
99
100
  def find_app(app_filter: nil)
100
101
  if app_filter
101
- app = Spaceship::Application.find(app_filter)
102
+ app = Spaceship::Tunes::Application.find(app_filter)
102
103
  UI.user_error!("Could not find an app by #{app_filter}") unless app
103
104
  return app
104
105
  end
@@ -132,7 +133,7 @@ module Pilot
132
133
  current_user_email = Spaceship::Tunes.client.user_email
133
134
  current_user_apple_id = Spaceship::Tunes.client.user
134
135
 
135
- current_user = Spaceship::Members.find(current_user_email)
136
+ current_user = Spaceship::Tunes::Members.find(current_user_email)
136
137
  unless current_user
137
138
  UI.user_error!("Unable to find a member for AppleID: #{current_user_apple_id}, email: #{current_user_email}")
138
139
  end
@@ -158,7 +159,7 @@ module Pilot
158
159
  end
159
160
 
160
161
  def list_testers_by_app(app_filter)
161
- app = Spaceship::Application.find(app_filter)
162
+ app = Spaceship::Tunes::Application.find(app_filter)
162
163
  UI.user_error!("Couldn't find app with '#{app_filter}'") unless app
163
164
  testers = Spaceship::TestFlight::Tester.all(app_id: app.apple_id)
164
165
  list_by_app(testers, "All Testers")
@@ -1,22 +1,2 @@
1
- require 'fastlane_core'
2
- require 'precheck/runner'
3
- require 'precheck/options'
4
-
5
- module Precheck
6
- # Use this to just setup the configuration attribute and set it later somewhere else
7
- class << self
8
- attr_accessor :config
9
-
10
- def precheckfile_name
11
- "Precheckfile"
12
- end
13
- end
14
-
15
- Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
16
- UI = FastlaneCore::UI
17
- ROOT = Pathname.new(File.expand_path('../..', __FILE__))
18
-
19
- ENV['APP_IDENTIFIER'] ||= ENV["PRECHECK_APP_IDENTIFIER"]
20
-
21
- DESCRIPTION = 'Check your app using a community driven set of App Store review rules to avoid being rejected'
22
- end
1
+ require_relative 'precheck/runner'
2
+ require_relative 'precheck/options'
@@ -1,7 +1,14 @@
1
1
  require "commander"
2
- require "fastlane_core"
2
+ require "fastlane_core/globals"
3
+ require "fastlane_core/configuration/commander_generator"
4
+ require "fastlane_core/configuration/configuration"
5
+ require "fastlane_core/helper"
3
6
  require "fastlane/version"
4
7
 
8
+ require_relative 'module'
9
+ require_relative 'options'
10
+ require_relative 'runner'
11
+
5
12
  HighLine.track_eof = false
6
13
 
7
14
  module Precheck
@@ -0,0 +1,21 @@
1
+ require 'fastlane_core/helper'
2
+ require 'fastlane_core/ui/ui'
3
+
4
+ module Precheck
5
+ # Use this to just setup the configuration attribute and set it later somewhere else
6
+ class << self
7
+ attr_accessor :config
8
+
9
+ def precheckfile_name
10
+ "Precheckfile"
11
+ end
12
+ end
13
+
14
+ Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
15
+ UI = FastlaneCore::UI
16
+ ROOT = Pathname.new(File.expand_path('../../..', __FILE__))
17
+
18
+ ENV['APP_IDENTIFIER'] ||= ENV["PRECHECK_APP_IDENTIFIER"]
19
+
20
+ DESCRIPTION = 'Check your app using a community driven set of App Store review rules to avoid being rejected'
21
+ end
@@ -1,6 +1,7 @@
1
- require 'fastlane_core'
2
- require 'credentials_manager'
3
- Dir[File.dirname(__FILE__) + '/rules/*.rb'].each { |file| require file }
1
+ require 'fastlane_core/configuration/config_item'
2
+ require 'credentials_manager/appfile_config'
3
+
4
+ require_relative 'rules/all'
4
5
 
5
6
  module Precheck
6
7
  class Options
@@ -1,6 +1,9 @@
1
- require 'fastlane_core'
2
- require 'precheck/item_to_check'
3
- require 'precheck/rule_check_result'
1
+ require 'credentials_manager/appfile_config'
2
+ require 'fastlane_core/configuration/config_item'
3
+
4
+ require_relative 'module'
5
+ require_relative 'item_to_check'
6
+ require_relative 'rule_check_result'
4
7
 
5
8
  module Precheck
6
9
  VALIDATION_STATES = {
@@ -141,7 +144,7 @@ module Precheck
141
144
  def perform_check(item: nil)
142
145
  if item.item_data.to_s == "" && item.is_optional
143
146
  # item is optional, and empty, so that's totally fine
144
- check_result = RuleReturn.new(validation_state: Precheck::VALIDATION_STATES[:passed])
147
+ check_result = RuleReturn.new(validation_state: VALIDATION_STATES[:passed])
145
148
  return RuleCheckResult.new(item, check_result, self)
146
149
  end
147
150
 
@@ -1,6 +1,9 @@
1
- require 'spaceship'
1
+ require 'spaceship/tunes/language_item'
2
2
  require 'fastlane/markdown_table_formatter'
3
- require 'precheck/item_to_check'
3
+
4
+ require_relative 'module'
5
+ require_relative 'item_to_check'
6
+ require_relative 'rule'
4
7
 
5
8
  module Precheck
6
9
  # encapsulated the results of the rule processing, needed to return not just an array of the results of our
@@ -1,4 +1,4 @@
1
- require 'precheck/rule'
1
+ require_relative '../rule'
2
2
 
3
3
  module Precheck
4
4
  # abstract class that defines a default way to check for the presence of a list of words within a block of text
@@ -0,0 +1 @@
1
+ Dir[File.dirname(__FILE__) + '/*.rb'].each { |file| require_relative file }
@@ -1,5 +1,4 @@
1
- require 'precheck/rule'
2
- require 'precheck/rules/abstract_text_match_rule'
1
+ require_relative 'abstract_text_match_rule'
3
2
 
4
3
  module Precheck
5
4
  class CopyrightDateRule < AbstractTextMatchRule
@@ -1,5 +1,6 @@
1
1
  require 'digest'
2
- require 'precheck/rule'
2
+
3
+ require_relative '../rule'
3
4
 
4
5
  module Precheck
5
6
  class CurseWordsRule < TextRule
@@ -1,5 +1,4 @@
1
- require 'precheck/rule'
2
- require 'precheck/rules/abstract_text_match_rule'
1
+ require_relative 'abstract_text_match_rule'
3
2
 
4
3
  module Precheck
5
4
  class CustomTextRule < AbstractTextMatchRule