fastlane_pricing_fix 2.212.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (910) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +1 -0
  3. data/LICENSE +21 -0
  4. data/README.md +235 -0
  5. data/bin/bin-proxy +19 -0
  6. data/bin/fastlane +23 -0
  7. data/cert/README.md +17 -0
  8. data/cert/lib/cert/commands_generator.rb +61 -0
  9. data/cert/lib/cert/module.rb +16 -0
  10. data/cert/lib/cert/options.rb +133 -0
  11. data/cert/lib/cert/runner.rb +250 -0
  12. data/cert/lib/cert.rb +4 -0
  13. data/credentials_manager/README.md +64 -0
  14. data/credentials_manager/lib/credentials_manager/account_manager.rb +157 -0
  15. data/credentials_manager/lib/credentials_manager/appfile_config.rb +196 -0
  16. data/credentials_manager/lib/credentials_manager/cli.rb +69 -0
  17. data/credentials_manager/lib/credentials_manager.rb +7 -0
  18. data/deliver/README.md +17 -0
  19. data/deliver/lib/assets/DeliverfileDefault +3 -0
  20. data/deliver/lib/assets/DeliverfileDefault.swift +13 -0
  21. data/deliver/lib/assets/ScreenshotsHelp +30 -0
  22. data/deliver/lib/assets/summary.html.erb +299 -0
  23. data/deliver/lib/deliver/app_screenshot.rb +387 -0
  24. data/deliver/lib/deliver/app_screenshot_iterator.rb +95 -0
  25. data/deliver/lib/deliver/app_screenshot_validator.rb +108 -0
  26. data/deliver/lib/deliver/commands_generator.rb +191 -0
  27. data/deliver/lib/deliver/detect_values.rb +104 -0
  28. data/deliver/lib/deliver/download_screenshots.rb +75 -0
  29. data/deliver/lib/deliver/generate_summary.rb +13 -0
  30. data/deliver/lib/deliver/html_generator.rb +78 -0
  31. data/deliver/lib/deliver/languages.rb +7 -0
  32. data/deliver/lib/deliver/loader.rb +157 -0
  33. data/deliver/lib/deliver/module.rb +24 -0
  34. data/deliver/lib/deliver/options.rb +461 -0
  35. data/deliver/lib/deliver/runner.rb +310 -0
  36. data/deliver/lib/deliver/screenshot_comparable.rb +62 -0
  37. data/deliver/lib/deliver/setup.rb +203 -0
  38. data/deliver/lib/deliver/submit_for_review.rb +236 -0
  39. data/deliver/lib/deliver/sync_screenshots.rb +200 -0
  40. data/deliver/lib/deliver/upload_metadata.rb +699 -0
  41. data/deliver/lib/deliver/upload_price_tier.rb +42 -0
  42. data/deliver/lib/deliver/upload_screenshots.rb +271 -0
  43. data/deliver/lib/deliver.rb +15 -0
  44. data/fastlane/README.md +11 -0
  45. data/fastlane/lib/assets/ActionDetails.md.erb +106 -0
  46. data/fastlane/lib/assets/Actions.md.erb +43 -0
  47. data/fastlane/lib/assets/AppfileTemplate +6 -0
  48. data/fastlane/lib/assets/AppfileTemplate.swift +7 -0
  49. data/fastlane/lib/assets/AppfileTemplateAndroid +2 -0
  50. data/fastlane/lib/assets/DefaultFastfileTemplate +20 -0
  51. data/fastlane/lib/assets/DefaultFastfileTemplate.swift +13 -0
  52. data/fastlane/lib/assets/completions/completion.bash +26 -0
  53. data/fastlane/lib/assets/completions/completion.fish +39 -0
  54. data/fastlane/lib/assets/completions/completion.sh +12 -0
  55. data/fastlane/lib/assets/completions/completion.zsh +24 -0
  56. data/fastlane/lib/assets/custom_action_template.rb +82 -0
  57. data/fastlane/lib/assets/mailgun_html_template.erb +142 -0
  58. data/fastlane/lib/assets/report_template.xml.erb +15 -0
  59. data/fastlane/lib/assets/s3_html_template.erb +105 -0
  60. data/fastlane/lib/assets/s3_plist_template.erb +31 -0
  61. data/fastlane/lib/assets/s3_version_template.erb +4 -0
  62. data/fastlane/lib/fastlane/action.rb +198 -0
  63. data/fastlane/lib/fastlane/action_collector.rb +35 -0
  64. data/fastlane/lib/fastlane/actions/README.md +5 -0
  65. data/fastlane/lib/fastlane/actions/actions_helper.rb +185 -0
  66. data/fastlane/lib/fastlane/actions/adb.rb +75 -0
  67. data/fastlane/lib/fastlane/actions/adb_devices.rb +70 -0
  68. data/fastlane/lib/fastlane/actions/add_extra_platforms.rb +45 -0
  69. data/fastlane/lib/fastlane/actions/add_git_tag.rb +138 -0
  70. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +255 -0
  71. data/fastlane/lib/fastlane/actions/app_store_connect_api_key.rb +148 -0
  72. data/fastlane/lib/fastlane/actions/appaloosa.rb +271 -0
  73. data/fastlane/lib/fastlane/actions/appetize.rb +193 -0
  74. data/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +135 -0
  75. data/fastlane/lib/fastlane/actions/appium.rb +181 -0
  76. data/fastlane/lib/fastlane/actions/appledoc.rb +226 -0
  77. data/fastlane/lib/fastlane/actions/appstore.rb +14 -0
  78. data/fastlane/lib/fastlane/actions/apteligent.rb +106 -0
  79. data/fastlane/lib/fastlane/actions/artifactory.rb +189 -0
  80. data/fastlane/lib/fastlane/actions/automatic_code_signing.rb +220 -0
  81. data/fastlane/lib/fastlane/actions/backup_file.rb +41 -0
  82. data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +135 -0
  83. data/fastlane/lib/fastlane/actions/badge.rb +151 -0
  84. data/fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb +113 -0
  85. data/fastlane/lib/fastlane/actions/build_android_app.rb +14 -0
  86. data/fastlane/lib/fastlane/actions/build_app.rb +171 -0
  87. data/fastlane/lib/fastlane/actions/build_ios_app.rb +47 -0
  88. data/fastlane/lib/fastlane/actions/build_mac_app.rb +46 -0
  89. data/fastlane/lib/fastlane/actions/bundle_install.rb +166 -0
  90. data/fastlane/lib/fastlane/actions/capture_android_screenshots.rb +63 -0
  91. data/fastlane/lib/fastlane/actions/capture_ios_screenshots.rb +61 -0
  92. data/fastlane/lib/fastlane/actions/capture_screenshots.rb +14 -0
  93. data/fastlane/lib/fastlane/actions/carthage.rb +238 -0
  94. data/fastlane/lib/fastlane/actions/cert.rb +14 -0
  95. data/fastlane/lib/fastlane/actions/changelog_from_git_commits.rb +188 -0
  96. data/fastlane/lib/fastlane/actions/chatwork.rb +95 -0
  97. data/fastlane/lib/fastlane/actions/check_app_store_metadata.rb +62 -0
  98. data/fastlane/lib/fastlane/actions/clean_build_artifacts.rb +71 -0
  99. data/fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb +75 -0
  100. data/fastlane/lib/fastlane/actions/clear_derived_data.rb +70 -0
  101. data/fastlane/lib/fastlane/actions/clipboard.rb +49 -0
  102. data/fastlane/lib/fastlane/actions/cloc.rb +85 -0
  103. data/fastlane/lib/fastlane/actions/cocoapods.rb +178 -0
  104. data/fastlane/lib/fastlane/actions/commit_github_file.rb +194 -0
  105. data/fastlane/lib/fastlane/actions/commit_version_bump.rb +300 -0
  106. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +113 -0
  107. data/fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb +168 -0
  108. data/fastlane/lib/fastlane/actions/create_app_online.rb +75 -0
  109. data/fastlane/lib/fastlane/actions/create_keychain.rb +179 -0
  110. data/fastlane/lib/fastlane/actions/create_pull_request.rb +271 -0
  111. data/fastlane/lib/fastlane/actions/create_xcframework.rb +203 -0
  112. data/fastlane/lib/fastlane/actions/danger.rb +146 -0
  113. data/fastlane/lib/fastlane/actions/debug.rb +32 -0
  114. data/fastlane/lib/fastlane/actions/default_platform.rb +47 -0
  115. data/fastlane/lib/fastlane/actions/delete_keychain.rb +68 -0
  116. data/fastlane/lib/fastlane/actions/deliver.rb +14 -0
  117. data/fastlane/lib/fastlane/actions/deploygate.rb +209 -0
  118. data/fastlane/lib/fastlane/actions/device_grid/README.md +157 -0
  119. data/fastlane/lib/fastlane/actions/docs/build_app.md +245 -0
  120. data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +349 -0
  121. data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +375 -0
  122. data/fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md +103 -0
  123. data/fastlane/lib/fastlane/actions/docs/create_app_online.md +386 -0
  124. data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +366 -0
  125. data/fastlane/lib/fastlane/actions/docs/get_certificates.md +86 -0
  126. data/fastlane/lib/fastlane/actions/docs/get_provisioning_profile.md +223 -0
  127. data/fastlane/lib/fastlane/actions/docs/get_push_certificate.md +134 -0
  128. data/fastlane/lib/fastlane/actions/docs/run_tests.md +151 -0
  129. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +579 -0
  130. data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +748 -0
  131. data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +204 -0
  132. data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +260 -0
  133. data/fastlane/lib/fastlane/actions/dotgpg_environment.rb +57 -0
  134. data/fastlane/lib/fastlane/actions/download.rb +76 -0
  135. data/fastlane/lib/fastlane/actions/download_app_privacy_details_from_app_store.rb +142 -0
  136. data/fastlane/lib/fastlane/actions/download_dsyms.rb +373 -0
  137. data/fastlane/lib/fastlane/actions/download_from_play_store.rb +61 -0
  138. data/fastlane/lib/fastlane/actions/dsym_zip.rb +93 -0
  139. data/fastlane/lib/fastlane/actions/echo.rb +14 -0
  140. data/fastlane/lib/fastlane/actions/ensure_bundle_exec.rb +59 -0
  141. data/fastlane/lib/fastlane/actions/ensure_env_vars.rb +54 -0
  142. data/fastlane/lib/fastlane/actions/ensure_git_branch.rb +68 -0
  143. data/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb +102 -0
  144. data/fastlane/lib/fastlane/actions/ensure_no_debug_code.rb +133 -0
  145. data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +124 -0
  146. data/fastlane/lib/fastlane/actions/environment_variable.rb +69 -0
  147. data/fastlane/lib/fastlane/actions/erb.rb +93 -0
  148. data/fastlane/lib/fastlane/actions/fastlane_version.rb +15 -0
  149. data/fastlane/lib/fastlane/actions/flock.rb +82 -0
  150. data/fastlane/lib/fastlane/actions/frame_screenshots.rb +64 -0
  151. data/fastlane/lib/fastlane/actions/frameit.rb +14 -0
  152. data/fastlane/lib/fastlane/actions/gcovr.rb +163 -0
  153. data/fastlane/lib/fastlane/actions/get_build_number.rb +106 -0
  154. data/fastlane/lib/fastlane/actions/get_build_number_repository.rb +120 -0
  155. data/fastlane/lib/fastlane/actions/get_certificates.rb +81 -0
  156. data/fastlane/lib/fastlane/actions/get_github_release.rb +176 -0
  157. data/fastlane/lib/fastlane/actions/get_info_plist_value.rb +78 -0
  158. data/fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb +81 -0
  159. data/fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb +117 -0
  160. data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +109 -0
  161. data/fastlane/lib/fastlane/actions/get_push_certificate.rb +87 -0
  162. data/fastlane/lib/fastlane/actions/get_version_number.rb +212 -0
  163. data/fastlane/lib/fastlane/actions/git_add.rb +88 -0
  164. data/fastlane/lib/fastlane/actions/git_branch.rb +55 -0
  165. data/fastlane/lib/fastlane/actions/git_commit.rb +80 -0
  166. data/fastlane/lib/fastlane/actions/git_pull.rb +58 -0
  167. data/fastlane/lib/fastlane/actions/git_remote_branch.rb +57 -0
  168. data/fastlane/lib/fastlane/actions/git_submodule_update.rb +60 -0
  169. data/fastlane/lib/fastlane/actions/git_tag_exists.rb +78 -0
  170. data/fastlane/lib/fastlane/actions/github_api.rb +271 -0
  171. data/fastlane/lib/fastlane/actions/google_play_track_release_names.rb +74 -0
  172. data/fastlane/lib/fastlane/actions/google_play_track_version_codes.rb +77 -0
  173. data/fastlane/lib/fastlane/actions/gradle.rb +334 -0
  174. data/fastlane/lib/fastlane/actions/gym.rb +10 -0
  175. data/fastlane/lib/fastlane/actions/hg_add_tag.rb +48 -0
  176. data/fastlane/lib/fastlane/actions/hg_commit_version_bump.rb +183 -0
  177. data/fastlane/lib/fastlane/actions/hg_ensure_clean_status.rb +53 -0
  178. data/fastlane/lib/fastlane/actions/hg_push.rb +64 -0
  179. data/fastlane/lib/fastlane/actions/hipchat.rb +200 -0
  180. data/fastlane/lib/fastlane/actions/hockey.rb +399 -0
  181. data/fastlane/lib/fastlane/actions/ifttt.rb +93 -0
  182. data/fastlane/lib/fastlane/actions/import.rb +49 -0
  183. data/fastlane/lib/fastlane/actions/import_certificate.rb +77 -0
  184. data/fastlane/lib/fastlane/actions/import_from_git.rb +81 -0
  185. data/fastlane/lib/fastlane/actions/increment_build_number.rb +123 -0
  186. data/fastlane/lib/fastlane/actions/increment_version_number.rb +180 -0
  187. data/fastlane/lib/fastlane/actions/install_on_device.rb +92 -0
  188. data/fastlane/lib/fastlane/actions/install_provisioning_profile.rb +62 -0
  189. data/fastlane/lib/fastlane/actions/install_xcode_plugin.rb +91 -0
  190. data/fastlane/lib/fastlane/actions/installr.rb +129 -0
  191. data/fastlane/lib/fastlane/actions/ipa.rb +246 -0
  192. data/fastlane/lib/fastlane/actions/is_ci.rb +51 -0
  193. data/fastlane/lib/fastlane/actions/jazzy.rb +59 -0
  194. data/fastlane/lib/fastlane/actions/jira.rb +162 -0
  195. data/fastlane/lib/fastlane/actions/lane_context.rb +60 -0
  196. data/fastlane/lib/fastlane/actions/last_git_commit.rb +58 -0
  197. data/fastlane/lib/fastlane/actions/last_git_tag.rb +60 -0
  198. data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +154 -0
  199. data/fastlane/lib/fastlane/actions/lcov.rb +98 -0
  200. data/fastlane/lib/fastlane/actions/mailgun.rb +191 -0
  201. data/fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb +81 -0
  202. data/fastlane/lib/fastlane/actions/match.rb +14 -0
  203. data/fastlane/lib/fastlane/actions/match_nuke.rb +59 -0
  204. data/fastlane/lib/fastlane/actions/min_fastlane_version.rb +57 -0
  205. data/fastlane/lib/fastlane/actions/modify_services.rb +208 -0
  206. data/fastlane/lib/fastlane/actions/nexus_upload.rb +231 -0
  207. data/fastlane/lib/fastlane/actions/notarize.rb +340 -0
  208. data/fastlane/lib/fastlane/actions/notification.rb +75 -0
  209. data/fastlane/lib/fastlane/actions/notify.rb +40 -0
  210. data/fastlane/lib/fastlane/actions/number_of_commits.rb +75 -0
  211. data/fastlane/lib/fastlane/actions/oclint.rb +270 -0
  212. data/fastlane/lib/fastlane/actions/onesignal.rb +196 -0
  213. data/fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb +33 -0
  214. data/fastlane/lib/fastlane/actions/opt_out_usage.rb +40 -0
  215. data/fastlane/lib/fastlane/actions/pem.rb +14 -0
  216. data/fastlane/lib/fastlane/actions/pilot.rb +14 -0
  217. data/fastlane/lib/fastlane/actions/pod_lib_lint.rb +189 -0
  218. data/fastlane/lib/fastlane/actions/pod_push.rb +198 -0
  219. data/fastlane/lib/fastlane/actions/podio_item.rb +210 -0
  220. data/fastlane/lib/fastlane/actions/precheck.rb +14 -0
  221. data/fastlane/lib/fastlane/actions/println.rb +14 -0
  222. data/fastlane/lib/fastlane/actions/produce.rb +14 -0
  223. data/fastlane/lib/fastlane/actions/prompt.rb +118 -0
  224. data/fastlane/lib/fastlane/actions/push_git_tags.rb +76 -0
  225. data/fastlane/lib/fastlane/actions/push_to_git_remote.rb +138 -0
  226. data/fastlane/lib/fastlane/actions/puts.rb +67 -0
  227. data/fastlane/lib/fastlane/actions/read_podspec.rb +90 -0
  228. data/fastlane/lib/fastlane/actions/recreate_schemes.rb +46 -0
  229. data/fastlane/lib/fastlane/actions/register_device.rb +148 -0
  230. data/fastlane/lib/fastlane/actions/register_devices.rb +211 -0
  231. data/fastlane/lib/fastlane/actions/reset_git_repo.rb +118 -0
  232. data/fastlane/lib/fastlane/actions/reset_simulator_contents.rb +90 -0
  233. data/fastlane/lib/fastlane/actions/resign.rb +125 -0
  234. data/fastlane/lib/fastlane/actions/restore_file.rb +44 -0
  235. data/fastlane/lib/fastlane/actions/rocket.rb +83 -0
  236. data/fastlane/lib/fastlane/actions/rsync.rb +71 -0
  237. data/fastlane/lib/fastlane/actions/ruby_version.rb +56 -0
  238. data/fastlane/lib/fastlane/actions/run_tests.rb +124 -0
  239. data/fastlane/lib/fastlane/actions/s3.rb +174 -0
  240. data/fastlane/lib/fastlane/actions/say.rb +55 -0
  241. data/fastlane/lib/fastlane/actions/scan.rb +14 -0
  242. data/fastlane/lib/fastlane/actions/scp.rb +108 -0
  243. data/fastlane/lib/fastlane/actions/screengrab.rb +14 -0
  244. data/fastlane/lib/fastlane/actions/set_build_number_repository.rb +76 -0
  245. data/fastlane/lib/fastlane/actions/set_changelog.rb +201 -0
  246. data/fastlane/lib/fastlane/actions/set_github_release.rb +287 -0
  247. data/fastlane/lib/fastlane/actions/set_info_plist_value.rb +92 -0
  248. data/fastlane/lib/fastlane/actions/set_pod_key.rb +77 -0
  249. data/fastlane/lib/fastlane/actions/setup_ci.rb +140 -0
  250. data/fastlane/lib/fastlane/actions/setup_circle_ci.rb +58 -0
  251. data/fastlane/lib/fastlane/actions/setup_jenkins.rb +197 -0
  252. data/fastlane/lib/fastlane/actions/setup_travis.rb +57 -0
  253. data/fastlane/lib/fastlane/actions/sh.rb +69 -0
  254. data/fastlane/lib/fastlane/actions/sigh.rb +14 -0
  255. data/fastlane/lib/fastlane/actions/skip_docs.rb +52 -0
  256. data/fastlane/lib/fastlane/actions/slack.rb +307 -0
  257. data/fastlane/lib/fastlane/actions/slather.rb +319 -0
  258. data/fastlane/lib/fastlane/actions/snapshot.rb +14 -0
  259. data/fastlane/lib/fastlane/actions/sonar.rb +170 -0
  260. data/fastlane/lib/fastlane/actions/sourcedocs.rb +128 -0
  261. data/fastlane/lib/fastlane/actions/spaceship_logs.rb +135 -0
  262. data/fastlane/lib/fastlane/actions/spaceship_stats.rb +73 -0
  263. data/fastlane/lib/fastlane/actions/splunkmint.rb +156 -0
  264. data/fastlane/lib/fastlane/actions/spm.rb +144 -0
  265. data/fastlane/lib/fastlane/actions/ssh.rb +157 -0
  266. data/fastlane/lib/fastlane/actions/supply.rb +14 -0
  267. data/fastlane/lib/fastlane/actions/swiftlint.rb +242 -0
  268. data/fastlane/lib/fastlane/actions/sync_code_signing.rb +114 -0
  269. data/fastlane/lib/fastlane/actions/team_id.rb +42 -0
  270. data/fastlane/lib/fastlane/actions/team_name.rb +42 -0
  271. data/fastlane/lib/fastlane/actions/testfairy.rb +284 -0
  272. data/fastlane/lib/fastlane/actions/testflight.rb +14 -0
  273. data/fastlane/lib/fastlane/actions/trainer.rb +49 -0
  274. data/fastlane/lib/fastlane/actions/tryouts.rb +148 -0
  275. data/fastlane/lib/fastlane/actions/twitter.rb +84 -0
  276. data/fastlane/lib/fastlane/actions/typetalk.rb +93 -0
  277. data/fastlane/lib/fastlane/actions/unlock_keychain.rb +132 -0
  278. data/fastlane/lib/fastlane/actions/update_app_group_identifiers.rb +88 -0
  279. data/fastlane/lib/fastlane/actions/update_app_identifier.rb +124 -0
  280. data/fastlane/lib/fastlane/actions/update_code_signing_settings.rb +223 -0
  281. data/fastlane/lib/fastlane/actions/update_fastlane.rb +158 -0
  282. data/fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb +96 -0
  283. data/fastlane/lib/fastlane/actions/update_info_plist.rb +143 -0
  284. data/fastlane/lib/fastlane/actions/update_keychain_access_groups.rb +91 -0
  285. data/fastlane/lib/fastlane/actions/update_plist.rb +115 -0
  286. data/fastlane/lib/fastlane/actions/update_project_code_signing.rb +76 -0
  287. data/fastlane/lib/fastlane/actions/update_project_provisioning.rb +181 -0
  288. data/fastlane/lib/fastlane/actions/update_project_team.rb +95 -0
  289. data/fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb +90 -0
  290. data/fastlane/lib/fastlane/actions/update_url_schemes.rb +112 -0
  291. data/fastlane/lib/fastlane/actions/upload_app_privacy_details_to_app_store.rb +290 -0
  292. data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +232 -0
  293. data/fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb +158 -0
  294. data/fastlane/lib/fastlane/actions/upload_to_app_store.rb +71 -0
  295. data/fastlane/lib/fastlane/actions/upload_to_play_store.rb +80 -0
  296. data/fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb +78 -0
  297. data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +126 -0
  298. data/fastlane/lib/fastlane/actions/validate_play_store_json_key.rb +100 -0
  299. data/fastlane/lib/fastlane/actions/verify_build.rb +199 -0
  300. data/fastlane/lib/fastlane/actions/verify_pod_keys.rb +67 -0
  301. data/fastlane/lib/fastlane/actions/verify_xcode.rb +159 -0
  302. data/fastlane/lib/fastlane/actions/version_bump_podspec.rb +105 -0
  303. data/fastlane/lib/fastlane/actions/version_get_podspec.rb +70 -0
  304. data/fastlane/lib/fastlane/actions/xcode_install.rb +112 -0
  305. data/fastlane/lib/fastlane/actions/xcode_select.rb +68 -0
  306. data/fastlane/lib/fastlane/actions/xcode_server_get_assets.rb +312 -0
  307. data/fastlane/lib/fastlane/actions/xcodebuild.rb +647 -0
  308. data/fastlane/lib/fastlane/actions/xcodes.rb +152 -0
  309. data/fastlane/lib/fastlane/actions/xcov.rb +71 -0
  310. data/fastlane/lib/fastlane/actions/xctool.rb +55 -0
  311. data/fastlane/lib/fastlane/actions/xcversion.rb +65 -0
  312. data/fastlane/lib/fastlane/actions/zip.rb +185 -0
  313. data/fastlane/lib/fastlane/auto_complete.rb +82 -0
  314. data/fastlane/lib/fastlane/boolean.rb +5 -0
  315. data/fastlane/lib/fastlane/cli_tools_distributor.rb +215 -0
  316. data/fastlane/lib/fastlane/command_line_handler.rb +49 -0
  317. data/fastlane/lib/fastlane/commands_generator.rb +371 -0
  318. data/fastlane/lib/fastlane/configuration_helper.rb +26 -0
  319. data/fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb +14 -0
  320. data/fastlane/lib/fastlane/documentation/actions_list.rb +214 -0
  321. data/fastlane/lib/fastlane/documentation/docs_generator.rb +94 -0
  322. data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +234 -0
  323. data/fastlane/lib/fastlane/environment_printer.rb +304 -0
  324. data/fastlane/lib/fastlane/erb_template_helper.rb +36 -0
  325. data/fastlane/lib/fastlane/fast_file.rb +464 -0
  326. data/fastlane/lib/fastlane/fastlane_require.rb +81 -0
  327. data/fastlane/lib/fastlane/features.rb +10 -0
  328. data/fastlane/lib/fastlane/helper/README.md +29 -0
  329. data/fastlane/lib/fastlane/helper/adb_helper.rb +66 -0
  330. data/fastlane/lib/fastlane/helper/dotenv_helper.rb +50 -0
  331. data/fastlane/lib/fastlane/helper/gem_helper.rb +26 -0
  332. data/fastlane/lib/fastlane/helper/git_helper.rb +166 -0
  333. data/fastlane/lib/fastlane/helper/gradle_helper.rb +62 -0
  334. data/fastlane/lib/fastlane/helper/lane_helper.rb +13 -0
  335. data/fastlane/lib/fastlane/helper/podspec_helper.rb +75 -0
  336. data/fastlane/lib/fastlane/helper/s3_client_helper.rb +78 -0
  337. data/fastlane/lib/fastlane/helper/sh_helper.rb +134 -0
  338. data/fastlane/lib/fastlane/helper/xcodebuild_formatter_helper.rb +9 -0
  339. data/fastlane/lib/fastlane/helper/xcodeproj_helper.rb +12 -0
  340. data/fastlane/lib/fastlane/helper/xcodes_helper.rb +28 -0
  341. data/fastlane/lib/fastlane/helper/xcversion_helper.rb +16 -0
  342. data/fastlane/lib/fastlane/junit_generator.rb +27 -0
  343. data/fastlane/lib/fastlane/lane.rb +97 -0
  344. data/fastlane/lib/fastlane/lane_list.rb +137 -0
  345. data/fastlane/lib/fastlane/lane_manager.rb +131 -0
  346. data/fastlane/lib/fastlane/lane_manager_base.rb +92 -0
  347. data/fastlane/lib/fastlane/markdown_table_formatter.rb +62 -0
  348. data/fastlane/lib/fastlane/new_action.rb +47 -0
  349. data/fastlane/lib/fastlane/notification/slack.rb +56 -0
  350. data/fastlane/lib/fastlane/one_off.rb +45 -0
  351. data/fastlane/lib/fastlane/other_action.rb +29 -0
  352. data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +54 -0
  353. data/fastlane/lib/fastlane/plugins/plugin_generator.rb +86 -0
  354. data/fastlane/lib/fastlane/plugins/plugin_generator_ui.rb +19 -0
  355. data/fastlane/lib/fastlane/plugins/plugin_info.rb +49 -0
  356. data/fastlane/lib/fastlane/plugins/plugin_info_collector.rb +158 -0
  357. data/fastlane/lib/fastlane/plugins/plugin_manager.rb +398 -0
  358. data/fastlane/lib/fastlane/plugins/plugin_search.rb +46 -0
  359. data/fastlane/lib/fastlane/plugins/plugin_update_manager.rb +70 -0
  360. data/fastlane/lib/fastlane/plugins/plugins.rb +12 -0
  361. data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +36 -0
  362. data/fastlane/lib/fastlane/plugins/template/.circleci/config.yml +43 -0
  363. data/fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml +29 -0
  364. data/fastlane/lib/fastlane/plugins/template/.gitignore +12 -0
  365. data/fastlane/lib/fastlane/plugins/template/.rspec +5 -0
  366. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +188 -0
  367. data/fastlane/lib/fastlane/plugins/template/.travis.yml +4 -0
  368. data/fastlane/lib/fastlane/plugins/template/Gemfile +6 -0
  369. data/fastlane/lib/fastlane/plugins/template/LICENSE.erb +21 -0
  370. data/fastlane/lib/fastlane/plugins/template/README.md.erb +52 -0
  371. data/fastlane/lib/fastlane/plugins/template/Rakefile +9 -0
  372. data/fastlane/lib/fastlane/plugins/template/fastlane/Fastfile.erb +3 -0
  373. data/fastlane/lib/fastlane/plugins/template/fastlane/Pluginfile.erb +1 -0
  374. data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb +47 -0
  375. data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/helper/%plugin_name%_helper.rb.erb +16 -0
  376. data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/version.rb.erb +5 -0
  377. data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb +16 -0
  378. data/fastlane/lib/fastlane/plugins/template/spec/%plugin_name%_action_spec.rb.erb +9 -0
  379. data/fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb +15 -0
  380. data/fastlane/lib/fastlane/runner.rb +378 -0
  381. data/fastlane/lib/fastlane/server/action_command.rb +61 -0
  382. data/fastlane/lib/fastlane/server/action_command_return.rb +14 -0
  383. data/fastlane/lib/fastlane/server/command_executor.rb +7 -0
  384. data/fastlane/lib/fastlane/server/command_parser.rb +44 -0
  385. data/fastlane/lib/fastlane/server/control_command.rb +23 -0
  386. data/fastlane/lib/fastlane/server/json_return_value_processor.rb +72 -0
  387. data/fastlane/lib/fastlane/server/socket_server.rb +238 -0
  388. data/fastlane/lib/fastlane/server/socket_server_action_command_executor.rb +101 -0
  389. data/fastlane/lib/fastlane/setup/setup.rb +368 -0
  390. data/fastlane/lib/fastlane/setup/setup_android.rb +97 -0
  391. data/fastlane/lib/fastlane/setup/setup_ios.rb +504 -0
  392. data/fastlane/lib/fastlane/shells.rb +6 -0
  393. data/fastlane/lib/fastlane/supported_platforms.rb +28 -0
  394. data/fastlane/lib/fastlane/swift_fastlane_api_generator.rb +480 -0
  395. data/fastlane/lib/fastlane/swift_fastlane_function.rb +447 -0
  396. data/fastlane/lib/fastlane/swift_lane_manager.rb +304 -0
  397. data/fastlane/lib/fastlane/swift_runner_upgrader.rb +265 -0
  398. data/fastlane/lib/fastlane/tools.rb +50 -0
  399. data/fastlane/lib/fastlane/version.rb +6 -0
  400. data/fastlane/lib/fastlane.rb +53 -0
  401. data/fastlane/swift/Actions.swift +16 -0
  402. data/fastlane/swift/Appfile.swift +15 -0
  403. data/fastlane/swift/ArgumentProcessor.swift +89 -0
  404. data/fastlane/swift/Atomic.swift +150 -0
  405. data/fastlane/swift/ControlCommand.swift +74 -0
  406. data/fastlane/swift/Deliverfile.swift +20 -0
  407. data/fastlane/swift/DeliverfileProtocol.swift +267 -0
  408. data/fastlane/swift/Fastfile.swift +16 -0
  409. data/fastlane/swift/Fastlane.swift +13576 -0
  410. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +448 -0
  411. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  412. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  413. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme +97 -0
  414. data/fastlane/swift/FastlaneSwiftRunner/README.txt +10 -0
  415. data/fastlane/swift/Gymfile.swift +20 -0
  416. data/fastlane/swift/GymfileProtocol.swift +211 -0
  417. data/fastlane/swift/LaneFileProtocol.swift +155 -0
  418. data/fastlane/swift/MainProcess.swift +79 -0
  419. data/fastlane/swift/Matchfile.swift +20 -0
  420. data/fastlane/swift/MatchfileProtocol.swift +211 -0
  421. data/fastlane/swift/OptionalConfigValue.swift +101 -0
  422. data/fastlane/swift/Plugins.swift +16 -0
  423. data/fastlane/swift/Precheckfile.swift +20 -0
  424. data/fastlane/swift/PrecheckfileProtocol.swift +55 -0
  425. data/fastlane/swift/RubyCommand.swift +157 -0
  426. data/fastlane/swift/RubyCommandable.swift +43 -0
  427. data/fastlane/swift/Runner.swift +279 -0
  428. data/fastlane/swift/RunnerArgument.swift +20 -0
  429. data/fastlane/swift/Scanfile.swift +20 -0
  430. data/fastlane/swift/ScanfileProtocol.swift +319 -0
  431. data/fastlane/swift/Screengrabfile.swift +20 -0
  432. data/fastlane/swift/ScreengrabfileProtocol.swift +99 -0
  433. data/fastlane/swift/Snapshotfile.swift +20 -0
  434. data/fastlane/swift/SnapshotfileProtocol.swift +207 -0
  435. data/fastlane/swift/SocketClient.swift +332 -0
  436. data/fastlane/swift/SocketClientDelegateProtocol.swift +21 -0
  437. data/fastlane/swift/SocketResponse.swift +84 -0
  438. data/fastlane/swift/formatting/Brewfile +1 -0
  439. data/fastlane/swift/formatting/Brewfile.lock.json +86 -0
  440. data/fastlane/swift/formatting/Rakefile +18 -0
  441. data/fastlane/swift/main.swift +47 -0
  442. data/fastlane/swift/upgrade_manifest.json +1 -0
  443. data/fastlane_core/README.md +80 -0
  444. data/fastlane_core/lib/assets/XMLTemplate.xml.erb +12 -0
  445. data/fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb +34 -0
  446. data/fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb +38 -0
  447. data/fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb +23 -0
  448. data/fastlane_core/lib/fastlane_core/analytics/analytics_ingester_client.rb +54 -0
  449. data/fastlane_core/lib/fastlane_core/analytics/analytics_session.rb +70 -0
  450. data/fastlane_core/lib/fastlane_core/analytics/app_identifier_guesser.rb +64 -0
  451. data/fastlane_core/lib/fastlane_core/android_package_name_guesser.rb +79 -0
  452. data/fastlane_core/lib/fastlane_core/build_watcher.rb +192 -0
  453. data/fastlane_core/lib/fastlane_core/cert_checker.rb +211 -0
  454. data/fastlane_core/lib/fastlane_core/clipboard.rb +20 -0
  455. data/fastlane_core/lib/fastlane_core/command_executor.rb +94 -0
  456. data/fastlane_core/lib/fastlane_core/configuration/commander_generator.rb +108 -0
  457. data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +359 -0
  458. data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +338 -0
  459. data/fastlane_core/lib/fastlane_core/configuration/configuration_file.rb +182 -0
  460. data/fastlane_core/lib/fastlane_core/core_ext/cfpropertylist.rb +23 -0
  461. data/fastlane_core/lib/fastlane_core/core_ext/shellwords.rb +63 -0
  462. data/fastlane_core/lib/fastlane_core/core_ext/string.rb +17 -0
  463. data/fastlane_core/lib/fastlane_core/device_manager.rb +378 -0
  464. data/fastlane_core/lib/fastlane_core/env.rb +9 -0
  465. data/fastlane_core/lib/fastlane_core/fastlane_folder.rb +72 -0
  466. data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +57 -0
  467. data/fastlane_core/lib/fastlane_core/feature/feature.rb +51 -0
  468. data/fastlane_core/lib/fastlane_core/features.rb +4 -0
  469. data/fastlane_core/lib/fastlane_core/globals.rb +27 -0
  470. data/fastlane_core/lib/fastlane_core/helper.rb +501 -0
  471. data/fastlane_core/lib/fastlane_core/ios_app_identifier_guesser.rb +112 -0
  472. data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +93 -0
  473. data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +53 -0
  474. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +983 -0
  475. data/fastlane_core/lib/fastlane_core/keychain_importer.rb +128 -0
  476. data/fastlane_core/lib/fastlane_core/languages.rb +16 -0
  477. data/fastlane_core/lib/fastlane_core/module.rb +31 -0
  478. data/fastlane_core/lib/fastlane_core/pkg_file_analyser.rb +56 -0
  479. data/fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb +49 -0
  480. data/fastlane_core/lib/fastlane_core/print_table.rb +133 -0
  481. data/fastlane_core/lib/fastlane_core/project.rb +546 -0
  482. data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +126 -0
  483. data/fastlane_core/lib/fastlane_core/queue_worker.rb +49 -0
  484. data/fastlane_core/lib/fastlane_core/string_filters.rb +51 -0
  485. data/fastlane_core/lib/fastlane_core/swag.rb +85 -0
  486. data/fastlane_core/lib/fastlane_core/tag_version.rb +31 -0
  487. data/fastlane_core/lib/fastlane_core/test_parser.rb +107 -0
  488. data/fastlane_core/lib/fastlane_core/ui/disable_colors.rb +26 -0
  489. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb +19 -0
  490. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_crash.rb +11 -0
  491. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb +25 -0
  492. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_exception.rb +19 -0
  493. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb +11 -0
  494. data/fastlane_core/lib/fastlane_core/ui/errors.rb +1 -0
  495. data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +342 -0
  496. data/fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb +62 -0
  497. data/fastlane_core/lib/fastlane_core/ui/help.erb +35 -0
  498. data/fastlane_core/lib/fastlane_core/ui/help_formatter.rb +16 -0
  499. data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +175 -0
  500. data/fastlane_core/lib/fastlane_core/ui/interface.rb +205 -0
  501. data/fastlane_core/lib/fastlane_core/ui/ui.rb +26 -0
  502. data/fastlane_core/lib/fastlane_core/update_checker/changelog.rb +37 -0
  503. data/fastlane_core/lib/fastlane_core/update_checker/update_checker.rb +109 -0
  504. data/fastlane_core/lib/fastlane_core.rb +48 -0
  505. data/frameit/README.md +17 -0
  506. data/frameit/lib/assets/empty.png +0 -0
  507. data/frameit/lib/frameit/commands_generator.rb +141 -0
  508. data/frameit/lib/frameit/config_parser.rb +136 -0
  509. data/frameit/lib/frameit/dependency_checker.rb +22 -0
  510. data/frameit/lib/frameit/device.rb +90 -0
  511. data/frameit/lib/frameit/device_types.rb +159 -0
  512. data/frameit/lib/frameit/editor.rb +558 -0
  513. data/frameit/lib/frameit/frame_downloader.rb +86 -0
  514. data/frameit/lib/frameit/mac_editor.rb +35 -0
  515. data/frameit/lib/frameit/module.rb +42 -0
  516. data/frameit/lib/frameit/offsets.rb +28 -0
  517. data/frameit/lib/frameit/options.rb +112 -0
  518. data/frameit/lib/frameit/runner.rb +97 -0
  519. data/frameit/lib/frameit/screenshot.rb +134 -0
  520. data/frameit/lib/frameit/strings_parser.rb +46 -0
  521. data/frameit/lib/frameit/template_finder.rb +45 -0
  522. data/frameit/lib/frameit/trim_box.rb +41 -0
  523. data/frameit/lib/frameit.rb +13 -0
  524. data/gym/README.md +17 -0
  525. data/gym/lib/assets/GymfileTemplate +13 -0
  526. data/gym/lib/assets/GymfileTemplate.swift +13 -0
  527. data/gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh +61 -0
  528. data/gym/lib/gym/code_signing_mapping.rb +210 -0
  529. data/gym/lib/gym/commands_generator.rb +79 -0
  530. data/gym/lib/gym/detect_values.rb +206 -0
  531. data/gym/lib/gym/error_handler.rb +314 -0
  532. data/gym/lib/gym/generators/README.md +1 -0
  533. data/gym/lib/gym/generators/build_command_generator.rb +197 -0
  534. data/gym/lib/gym/generators/package_command_generator.rb +72 -0
  535. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +238 -0
  536. data/gym/lib/gym/manager.rb +22 -0
  537. data/gym/lib/gym/module.rb +74 -0
  538. data/gym/lib/gym/options.rb +327 -0
  539. data/gym/lib/gym/runner.rb +376 -0
  540. data/gym/lib/gym/xcode.rb +27 -0
  541. data/gym/lib/gym/xcodebuild_fixes/README.md +9 -0
  542. data/gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb +35 -0
  543. data/gym/lib/gym.rb +9 -0
  544. data/match/README.md +17 -0
  545. data/match/lib/assets/MatchfileTemplate +11 -0
  546. data/match/lib/assets/MatchfileTemplate.swift +9 -0
  547. data/match/lib/assets/READMETemplate.md +59 -0
  548. data/match/lib/match/change_password.rb +55 -0
  549. data/match/lib/match/commands_generator.rb +192 -0
  550. data/match/lib/match/encryption/interface.rb +17 -0
  551. data/match/lib/match/encryption/openssl.rb +163 -0
  552. data/match/lib/match/encryption.rb +52 -0
  553. data/match/lib/match/generator.rb +124 -0
  554. data/match/lib/match/importer.rb +165 -0
  555. data/match/lib/match/migrate.rb +109 -0
  556. data/match/lib/match/module.rb +85 -0
  557. data/match/lib/match/nuke.rb +421 -0
  558. data/match/lib/match/options.rb +347 -0
  559. data/match/lib/match/runner.rb +472 -0
  560. data/match/lib/match/setup.rb +40 -0
  561. data/match/lib/match/spaceship_ensure.rb +103 -0
  562. data/match/lib/match/storage/git_storage.rb +254 -0
  563. data/match/lib/match/storage/gitlab/client.rb +102 -0
  564. data/match/lib/match/storage/gitlab/secure_file.rb +65 -0
  565. data/match/lib/match/storage/gitlab_secure_files.rb +182 -0
  566. data/match/lib/match/storage/google_cloud_storage.rb +383 -0
  567. data/match/lib/match/storage/interface.rb +119 -0
  568. data/match/lib/match/storage/s3_storage.rb +205 -0
  569. data/match/lib/match/storage.rb +50 -0
  570. data/match/lib/match/table_printer.rb +52 -0
  571. data/match/lib/match/utils.rb +88 -0
  572. data/match/lib/match.rb +14 -0
  573. data/pem/README.md +17 -0
  574. data/pem/lib/pem/commands_generator.rb +48 -0
  575. data/pem/lib/pem/manager.rb +136 -0
  576. data/pem/lib/pem/module.rb +19 -0
  577. data/pem/lib/pem/options.rb +112 -0
  578. data/pem/lib/pem.rb +4 -0
  579. data/pilot/README.md +17 -0
  580. data/pilot/lib/pilot/build_manager.rb +602 -0
  581. data/pilot/lib/pilot/commands_generator.rb +175 -0
  582. data/pilot/lib/pilot/manager.rb +95 -0
  583. data/pilot/lib/pilot/module.rb +11 -0
  584. data/pilot/lib/pilot/options.rb +336 -0
  585. data/pilot/lib/pilot/tester_exporter.rb +57 -0
  586. data/pilot/lib/pilot/tester_importer.rb +53 -0
  587. data/pilot/lib/pilot/tester_manager.rb +167 -0
  588. data/pilot/lib/pilot.rb +8 -0
  589. data/precheck/README.md +17 -0
  590. data/precheck/lib/assets/PrecheckfileTemplate +27 -0
  591. data/precheck/lib/assets/PrecheckfileTemplate.swift +19 -0
  592. data/precheck/lib/precheck/commands_generator.rb +75 -0
  593. data/precheck/lib/precheck/item_to_check.rb +58 -0
  594. data/precheck/lib/precheck/module.rb +23 -0
  595. data/precheck/lib/precheck/options.rb +110 -0
  596. data/precheck/lib/precheck/rule.rb +171 -0
  597. data/precheck/lib/precheck/rule_check_result.rb +19 -0
  598. data/precheck/lib/precheck/rule_processor.rb +265 -0
  599. data/precheck/lib/precheck/rules/abstract_text_match_rule.rb +80 -0
  600. data/precheck/lib/precheck/rules/all.rb +1 -0
  601. data/precheck/lib/precheck/rules/copyright_date_rule.rb +37 -0
  602. data/precheck/lib/precheck/rules/curse_words_rule.rb +62 -0
  603. data/precheck/lib/precheck/rules/custom_text_rule.rb +35 -0
  604. data/precheck/lib/precheck/rules/free_stuff_iap_rule.rb +31 -0
  605. data/precheck/lib/precheck/rules/future_functionality_rule.rb +33 -0
  606. data/precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb +37 -0
  607. data/precheck/lib/precheck/rules/other_platforms_rule.rb +43 -0
  608. data/precheck/lib/precheck/rules/placeholder_words_rule.rb +31 -0
  609. data/precheck/lib/precheck/rules/rules_data/curse_word_hashes/en_us.txt +349 -0
  610. data/precheck/lib/precheck/rules/test_words_rule.rb +30 -0
  611. data/precheck/lib/precheck/rules/unreachable_urls_rule.rb +47 -0
  612. data/precheck/lib/precheck/runner.rb +202 -0
  613. data/precheck/lib/precheck.rb +3 -0
  614. data/produce/README.md +17 -0
  615. data/produce/lib/produce/available_default_languages.rb +51 -0
  616. data/produce/lib/produce/cloud_container.rb +82 -0
  617. data/produce/lib/produce/commands_generator.rb +337 -0
  618. data/produce/lib/produce/developer_center.rb +181 -0
  619. data/produce/lib/produce/group.rb +90 -0
  620. data/produce/lib/produce/itunes_connect.rb +139 -0
  621. data/produce/lib/produce/manager.rb +15 -0
  622. data/produce/lib/produce/merchant.rb +121 -0
  623. data/produce/lib/produce/module.rb +14 -0
  624. data/produce/lib/produce/options.rb +184 -0
  625. data/produce/lib/produce/service.rb +425 -0
  626. data/produce/lib/produce.rb +6 -0
  627. data/scan/README.md +17 -0
  628. data/scan/lib/assets/ScanfileTemplate +16 -0
  629. data/scan/lib/assets/ScanfileTemplate.swift +13 -0
  630. data/scan/lib/scan/commands_generator.rb +79 -0
  631. data/scan/lib/scan/detect_values.rb +244 -0
  632. data/scan/lib/scan/error_handler.rb +66 -0
  633. data/scan/lib/scan/manager.rb +38 -0
  634. data/scan/lib/scan/module.rb +37 -0
  635. data/scan/lib/scan/options.rb +541 -0
  636. data/scan/lib/scan/runner.rb +428 -0
  637. data/scan/lib/scan/slack_poster.rb +63 -0
  638. data/scan/lib/scan/test_command_generator.rb +262 -0
  639. data/scan/lib/scan/test_result_parser.rb +33 -0
  640. data/scan/lib/scan/xcpretty_reporter_options_generator.rb +85 -0
  641. data/scan/lib/scan.rb +10 -0
  642. data/screengrab/README.md +17 -0
  643. data/screengrab/lib/assets/ScreengrabfileTemplate +15 -0
  644. data/screengrab/lib/assets/ScreengrabfileTemplate.swift +15 -0
  645. data/screengrab/lib/screengrab/android_environment.rb +43 -0
  646. data/screengrab/lib/screengrab/commands_generator.rb +71 -0
  647. data/screengrab/lib/screengrab/dependency_checker.rb +38 -0
  648. data/screengrab/lib/screengrab/detect_values.rb +16 -0
  649. data/screengrab/lib/screengrab/module.rb +26 -0
  650. data/screengrab/lib/screengrab/options.rb +151 -0
  651. data/screengrab/lib/screengrab/page.html.erb +190 -0
  652. data/screengrab/lib/screengrab/reports_generator.rb +36 -0
  653. data/screengrab/lib/screengrab/runner.rb +452 -0
  654. data/screengrab/lib/screengrab/setup.rb +24 -0
  655. data/screengrab/lib/screengrab.rb +7 -0
  656. data/sigh/README.md +17 -0
  657. data/sigh/lib/assets/resign.sh +932 -0
  658. data/sigh/lib/sigh/commands_generator.rb +155 -0
  659. data/sigh/lib/sigh/download_all.rb +120 -0
  660. data/sigh/lib/sigh/local_manage.rb +145 -0
  661. data/sigh/lib/sigh/manager.rb +47 -0
  662. data/sigh/lib/sigh/module.rb +44 -0
  663. data/sigh/lib/sigh/options.rb +199 -0
  664. data/sigh/lib/sigh/repair.rb +34 -0
  665. data/sigh/lib/sigh/resign.rb +220 -0
  666. data/sigh/lib/sigh/runner.rb +412 -0
  667. data/sigh/lib/sigh.rb +4 -0
  668. data/snapshot/README.md +17 -0
  669. data/snapshot/lib/assets/SnapfileTemplate +38 -0
  670. data/snapshot/lib/assets/SnapfileTemplate.swift +42 -0
  671. data/snapshot/lib/assets/SnapshotHelper.swift +309 -0
  672. data/snapshot/lib/assets/SnapshotHelperXcode8.swift +172 -0
  673. data/snapshot/lib/snapshot/collector.rb +140 -0
  674. data/snapshot/lib/snapshot/commands_generator.rb +117 -0
  675. data/snapshot/lib/snapshot/dependency_checker.rb +69 -0
  676. data/snapshot/lib/snapshot/detect_values.rb +86 -0
  677. data/snapshot/lib/snapshot/error_handler.rb +24 -0
  678. data/snapshot/lib/snapshot/fixes/README.md +5 -0
  679. data/snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb +27 -0
  680. data/snapshot/lib/snapshot/fixes/simulator_shared_pasteboard.rb +16 -0
  681. data/snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb +27 -0
  682. data/snapshot/lib/snapshot/latest_os_version.rb +34 -0
  683. data/snapshot/lib/snapshot/module.rb +44 -0
  684. data/snapshot/lib/snapshot/options.rb +326 -0
  685. data/snapshot/lib/snapshot/page.html.erb +285 -0
  686. data/snapshot/lib/snapshot/reports_generator.rb +154 -0
  687. data/snapshot/lib/snapshot/reset_simulators.rb +122 -0
  688. data/snapshot/lib/snapshot/runner.rb +146 -0
  689. data/snapshot/lib/snapshot/screenshot_flatten.rb +20 -0
  690. data/snapshot/lib/snapshot/screenshot_rotate.rb +36 -0
  691. data/snapshot/lib/snapshot/setup.rb +58 -0
  692. data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +64 -0
  693. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +219 -0
  694. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +220 -0
  695. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_xcode_8.rb +113 -0
  696. data/snapshot/lib/snapshot/test_command_generator.rb +157 -0
  697. data/snapshot/lib/snapshot/test_command_generator_base.rb +130 -0
  698. data/snapshot/lib/snapshot/test_command_generator_xcode_8.rb +70 -0
  699. data/snapshot/lib/snapshot/update.rb +38 -0
  700. data/snapshot/lib/snapshot.rb +19 -0
  701. data/spaceship/README.md +173 -0
  702. data/spaceship/lib/assets/displayFamilies.json +181 -0
  703. data/spaceship/lib/assets/languageMapping.json +306 -0
  704. data/spaceship/lib/assets/languageMappingReadable.json +30 -0
  705. data/spaceship/lib/spaceship/base.rb +310 -0
  706. data/spaceship/lib/spaceship/client.rb +988 -0
  707. data/spaceship/lib/spaceship/commands_generator.rb +55 -0
  708. data/spaceship/lib/spaceship/connect_api/api_client.rb +356 -0
  709. data/spaceship/lib/spaceship/connect_api/client.rb +216 -0
  710. data/spaceship/lib/spaceship/connect_api/file_uploader.rb +99 -0
  711. data/spaceship/lib/spaceship/connect_api/model.rb +172 -0
  712. data/spaceship/lib/spaceship/connect_api/models/actor.rb +26 -0
  713. data/spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb +147 -0
  714. data/spaceship/lib/spaceship/connect_api/models/app.rb +482 -0
  715. data/spaceship/lib/spaceship/connect_api/models/app_category.rb +94 -0
  716. data/spaceship/lib/spaceship/connect_api/models/app_data_usage.rb +59 -0
  717. data/spaceship/lib/spaceship/connect_api/models/app_data_usage_category.rb +65 -0
  718. data/spaceship/lib/spaceship/connect_api/models/app_data_usage_data_protection.rb +27 -0
  719. data/spaceship/lib/spaceship/connect_api/models/app_data_usage_grouping.rb +18 -0
  720. data/spaceship/lib/spaceship/connect_api/models/app_data_usage_purposes.rb +37 -0
  721. data/spaceship/lib/spaceship/connect_api/models/app_data_usages_publish_state.rb +36 -0
  722. data/spaceship/lib/spaceship/connect_api/models/app_info.rb +112 -0
  723. data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +48 -0
  724. data/spaceship/lib/spaceship/connect_api/models/app_preview.rb +135 -0
  725. data/spaceship/lib/spaceship/connect_api/models/app_preview_set.rb +109 -0
  726. data/spaceship/lib/spaceship/connect_api/models/app_price.rb +22 -0
  727. data/spaceship/lib/spaceship/connect_api/models/app_price_point.rb +26 -0
  728. data/spaceship/lib/spaceship/connect_api/models/app_price_tier.rb +12 -0
  729. data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +189 -0
  730. data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +169 -0
  731. data/spaceship/lib/spaceship/connect_api/models/app_store_review_attachment.rb +73 -0
  732. data/spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb +53 -0
  733. data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +241 -0
  734. data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +115 -0
  735. data/spaceship/lib/spaceship/connect_api/models/app_store_version_phased_release.rb +57 -0
  736. data/spaceship/lib/spaceship/connect_api/models/app_store_version_release_request.rb +12 -0
  737. data/spaceship/lib/spaceship/connect_api/models/app_store_version_submission.rb +27 -0
  738. data/spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb +28 -0
  739. data/spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb +32 -0
  740. data/spaceship/lib/spaceship/connect_api/models/beta_app_review_submission.rb +27 -0
  741. data/spaceship/lib/spaceship/connect_api/models/beta_build_localization.rb +20 -0
  742. data/spaceship/lib/spaceship/connect_api/models/beta_build_metric.rb +24 -0
  743. data/spaceship/lib/spaceship/connect_api/models/beta_feedback.rb +77 -0
  744. data/spaceship/lib/spaceship/connect_api/models/beta_group.rb +67 -0
  745. data/spaceship/lib/spaceship/connect_api/models/beta_screenshot.rb +18 -0
  746. data/spaceship/lib/spaceship/connect_api/models/beta_tester.rb +63 -0
  747. data/spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb +44 -0
  748. data/spaceship/lib/spaceship/connect_api/models/build.rb +195 -0
  749. data/spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb +69 -0
  750. data/spaceship/lib/spaceship/connect_api/models/build_bundle.rb +68 -0
  751. data/spaceship/lib/spaceship/connect_api/models/build_bundle_file_sizes.rb +34 -0
  752. data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +38 -0
  753. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +93 -0
  754. data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +136 -0
  755. data/spaceship/lib/spaceship/connect_api/models/capabilities.rb +27 -0
  756. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +110 -0
  757. data/spaceship/lib/spaceship/connect_api/models/custom_app_organization.rb +43 -0
  758. data/spaceship/lib/spaceship/connect_api/models/custom_app_user.rb +41 -0
  759. data/spaceship/lib/spaceship/connect_api/models/device.rb +133 -0
  760. data/spaceship/lib/spaceship/connect_api/models/idfa_declaration.rb +43 -0
  761. data/spaceship/lib/spaceship/connect_api/models/pre_release_version.rb +20 -0
  762. data/spaceship/lib/spaceship/connect_api/models/profile.rb +111 -0
  763. data/spaceship/lib/spaceship/connect_api/models/reset_ratings_request.rb +27 -0
  764. data/spaceship/lib/spaceship/connect_api/models/resolution_center_message.rb +29 -0
  765. data/spaceship/lib/spaceship/connect_api/models/resolution_center_thread.rb +67 -0
  766. data/spaceship/lib/spaceship/connect_api/models/review_rejection.rb +19 -0
  767. data/spaceship/lib/spaceship/connect_api/models/review_submission.rb +86 -0
  768. data/spaceship/lib/spaceship/connect_api/models/review_submission_item.rb +40 -0
  769. data/spaceship/lib/spaceship/connect_api/models/sandbox_tester.rb +67 -0
  770. data/spaceship/lib/spaceship/connect_api/models/territory.rb +28 -0
  771. data/spaceship/lib/spaceship/connect_api/models/user.rb +72 -0
  772. data/spaceship/lib/spaceship/connect_api/models/user_invitation.rb +96 -0
  773. data/spaceship/lib/spaceship/connect_api/provisioning/client.rb +92 -0
  774. data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +264 -0
  775. data/spaceship/lib/spaceship/connect_api/response.rb +86 -0
  776. data/spaceship/lib/spaceship/connect_api/spaceship.rb +102 -0
  777. data/spaceship/lib/spaceship/connect_api/testflight/client.rb +27 -0
  778. data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +513 -0
  779. data/spaceship/lib/spaceship/connect_api/token.rb +120 -0
  780. data/spaceship/lib/spaceship/connect_api/token_refresh_middleware.rb +24 -0
  781. data/spaceship/lib/spaceship/connect_api/tunes/client.rb +27 -0
  782. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +1281 -0
  783. data/spaceship/lib/spaceship/connect_api/users/client.rb +27 -0
  784. data/spaceship/lib/spaceship/connect_api/users/users.rb +135 -0
  785. data/spaceship/lib/spaceship/connect_api.rb +132 -0
  786. data/spaceship/lib/spaceship/du/du_client.rb +138 -0
  787. data/spaceship/lib/spaceship/du/upload_file.rb +58 -0
  788. data/spaceship/lib/spaceship/du/utilities.rb +99 -0
  789. data/spaceship/lib/spaceship/errors.rb +135 -0
  790. data/spaceship/lib/spaceship/globals.rb +21 -0
  791. data/spaceship/lib/spaceship/hashcash.rb +52 -0
  792. data/spaceship/lib/spaceship/helper/net_http_generic_request.rb +20 -0
  793. data/spaceship/lib/spaceship/helper/plist_middleware.rb +16 -0
  794. data/spaceship/lib/spaceship/helper/rels_middleware.rb +28 -0
  795. data/spaceship/lib/spaceship/launcher.rb +99 -0
  796. data/spaceship/lib/spaceship/module.rb +8 -0
  797. data/spaceship/lib/spaceship/playground.rb +75 -0
  798. data/spaceship/lib/spaceship/portal/app.rb +201 -0
  799. data/spaceship/lib/spaceship/portal/app_group.rb +73 -0
  800. data/spaceship/lib/spaceship/portal/app_service.rb +87 -0
  801. data/spaceship/lib/spaceship/portal/certificate.rb +366 -0
  802. data/spaceship/lib/spaceship/portal/cloud_container.rb +74 -0
  803. data/spaceship/lib/spaceship/portal/device.rb +191 -0
  804. data/spaceship/lib/spaceship/portal/invite.rb +53 -0
  805. data/spaceship/lib/spaceship/portal/key.rb +101 -0
  806. data/spaceship/lib/spaceship/portal/legacy_wrapper.rb +21 -0
  807. data/spaceship/lib/spaceship/portal/merchant.rb +86 -0
  808. data/spaceship/lib/spaceship/portal/passbook.rb +78 -0
  809. data/spaceship/lib/spaceship/portal/person.rb +62 -0
  810. data/spaceship/lib/spaceship/portal/persons.rb +67 -0
  811. data/spaceship/lib/spaceship/portal/portal.rb +17 -0
  812. data/spaceship/lib/spaceship/portal/portal_base.rb +16 -0
  813. data/spaceship/lib/spaceship/portal/portal_client.rb +862 -0
  814. data/spaceship/lib/spaceship/portal/provisioning_profile.rb +559 -0
  815. data/spaceship/lib/spaceship/portal/provisioning_profile_template.rb +52 -0
  816. data/spaceship/lib/spaceship/portal/spaceship.rb +154 -0
  817. data/spaceship/lib/spaceship/portal/ui/select_team.rb +116 -0
  818. data/spaceship/lib/spaceship/portal/website_push.rb +88 -0
  819. data/spaceship/lib/spaceship/provider.rb +13 -0
  820. data/spaceship/lib/spaceship/spaceauth_runner.rb +97 -0
  821. data/spaceship/lib/spaceship/stats_middleware.rb +65 -0
  822. data/spaceship/lib/spaceship/test_flight/app_test_info.rb +40 -0
  823. data/spaceship/lib/spaceship/test_flight/base.rb +39 -0
  824. data/spaceship/lib/spaceship/test_flight/beta_review_info.rb +19 -0
  825. data/spaceship/lib/spaceship/test_flight/build.rb +242 -0
  826. data/spaceship/lib/spaceship/test_flight/build_trains.rb +50 -0
  827. data/spaceship/lib/spaceship/test_flight/client.rb +361 -0
  828. data/spaceship/lib/spaceship/test_flight/export_compliance.rb +12 -0
  829. data/spaceship/lib/spaceship/test_flight/group.rb +131 -0
  830. data/spaceship/lib/spaceship/test_flight/test_info.rb +56 -0
  831. data/spaceship/lib/spaceship/test_flight/tester.rb +136 -0
  832. data/spaceship/lib/spaceship/test_flight.rb +10 -0
  833. data/spaceship/lib/spaceship/tunes/app_analytics.rb +168 -0
  834. data/spaceship/lib/spaceship/tunes/app_details.rb +147 -0
  835. data/spaceship/lib/spaceship/tunes/app_image.rb +51 -0
  836. data/spaceship/lib/spaceship/tunes/app_ratings.rb +58 -0
  837. data/spaceship/lib/spaceship/tunes/app_review.rb +55 -0
  838. data/spaceship/lib/spaceship/tunes/app_review_attachment.rb +49 -0
  839. data/spaceship/lib/spaceship/tunes/app_screenshot.rb +12 -0
  840. data/spaceship/lib/spaceship/tunes/app_status.rb +63 -0
  841. data/spaceship/lib/spaceship/tunes/app_submission.rb +161 -0
  842. data/spaceship/lib/spaceship/tunes/app_trailer.rb +64 -0
  843. data/spaceship/lib/spaceship/tunes/app_version.rb +970 -0
  844. data/spaceship/lib/spaceship/tunes/app_version_common.rb +35 -0
  845. data/spaceship/lib/spaceship/tunes/app_version_generated_promocodes.rb +28 -0
  846. data/spaceship/lib/spaceship/tunes/app_version_history.rb +52 -0
  847. data/spaceship/lib/spaceship/tunes/app_version_promocodes.rb +27 -0
  848. data/spaceship/lib/spaceship/tunes/app_version_ref.rb +15 -0
  849. data/spaceship/lib/spaceship/tunes/app_version_states_history.rb +27 -0
  850. data/spaceship/lib/spaceship/tunes/application.rb +453 -0
  851. data/spaceship/lib/spaceship/tunes/availability.rb +164 -0
  852. data/spaceship/lib/spaceship/tunes/b2b_organization.rb +50 -0
  853. data/spaceship/lib/spaceship/tunes/b2b_user.rb +30 -0
  854. data/spaceship/lib/spaceship/tunes/build.rb +263 -0
  855. data/spaceship/lib/spaceship/tunes/build_details.rb +184 -0
  856. data/spaceship/lib/spaceship/tunes/build_train.rb +181 -0
  857. data/spaceship/lib/spaceship/tunes/developer_response.rb +23 -0
  858. data/spaceship/lib/spaceship/tunes/device_type.rb +17 -0
  859. data/spaceship/lib/spaceship/tunes/display_family.rb +84 -0
  860. data/spaceship/lib/spaceship/tunes/errors.rb +17 -0
  861. data/spaceship/lib/spaceship/tunes/iap.rb +168 -0
  862. data/spaceship/lib/spaceship/tunes/iap_detail.rb +264 -0
  863. data/spaceship/lib/spaceship/tunes/iap_families.rb +68 -0
  864. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +90 -0
  865. data/spaceship/lib/spaceship/tunes/iap_family_list.rb +28 -0
  866. data/spaceship/lib/spaceship/tunes/iap_list.rb +76 -0
  867. data/spaceship/lib/spaceship/tunes/iap_status.rb +56 -0
  868. data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_info.rb +46 -0
  869. data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_tier.rb +25 -0
  870. data/spaceship/lib/spaceship/tunes/iap_type.rb +45 -0
  871. data/spaceship/lib/spaceship/tunes/language_converter.rb +65 -0
  872. data/spaceship/lib/spaceship/tunes/language_item.rb +61 -0
  873. data/spaceship/lib/spaceship/tunes/legacy_wrapper.rb +13 -0
  874. data/spaceship/lib/spaceship/tunes/member.rb +84 -0
  875. data/spaceship/lib/spaceship/tunes/members.rb +35 -0
  876. data/spaceship/lib/spaceship/tunes/pricing_info.rb +42 -0
  877. data/spaceship/lib/spaceship/tunes/pricing_tier.rb +25 -0
  878. data/spaceship/lib/spaceship/tunes/sandbox_tester.rb +74 -0
  879. data/spaceship/lib/spaceship/tunes/spaceship.rb +39 -0
  880. data/spaceship/lib/spaceship/tunes/territory.rb +39 -0
  881. data/spaceship/lib/spaceship/tunes/transit_app_file.rb +23 -0
  882. data/spaceship/lib/spaceship/tunes/tunes.rb +34 -0
  883. data/spaceship/lib/spaceship/tunes/tunes_base.rb +17 -0
  884. data/spaceship/lib/spaceship/tunes/tunes_client.rb +1705 -0
  885. data/spaceship/lib/spaceship/tunes/version_set.rb +26 -0
  886. data/spaceship/lib/spaceship/two_step_or_factor_client.rb +380 -0
  887. data/spaceship/lib/spaceship/ui.rb +27 -0
  888. data/spaceship/lib/spaceship/upgrade_2fa_later_client.rb +91 -0
  889. data/spaceship/lib/spaceship.rb +31 -0
  890. data/supply/README.md +17 -0
  891. data/supply/lib/supply/apk_listing.rb +14 -0
  892. data/supply/lib/supply/client.rb +587 -0
  893. data/supply/lib/supply/commands_generator.rb +68 -0
  894. data/supply/lib/supply/languages.rb +88 -0
  895. data/supply/lib/supply/listing.rb +32 -0
  896. data/supply/lib/supply/options.rb +344 -0
  897. data/supply/lib/supply/reader.rb +41 -0
  898. data/supply/lib/supply/release_listing.rb +18 -0
  899. data/supply/lib/supply/setup.rb +122 -0
  900. data/supply/lib/supply/uploader.rb +489 -0
  901. data/supply/lib/supply.rb +53 -0
  902. data/trainer/lib/assets/junit.xml.erb +28 -0
  903. data/trainer/lib/trainer/commands_generator.rb +51 -0
  904. data/trainer/lib/trainer/junit_generator.rb +31 -0
  905. data/trainer/lib/trainer/module.rb +10 -0
  906. data/trainer/lib/trainer/options.rb +66 -0
  907. data/trainer/lib/trainer/test_parser.rb +398 -0
  908. data/trainer/lib/trainer/xcresult.rb +403 -0
  909. data/trainer/lib/trainer.rb +7 -0
  910. metadata +1909 -0
@@ -0,0 +1,366 @@
1
+ <p align="center">
2
+ <img src="/img/actions/frameit.png" width="250">
3
+ </p>
4
+
5
+ ###### Easily put your screenshots into the right device frames
6
+
7
+ _frameit_ allows you to put a gorgeous device frame around your iOS, macOS and Android screenshots just by running one simple command. Use _frameit_ to prepare perfect screenshots for the App Store, your website, QA or emails.
8
+
9
+ -------
10
+
11
+ <p align="center">
12
+ <a href="#features">Features</a> &bull;
13
+ <a href="#usage">Usage</a> &bull;
14
+ <a href="#tips">Tips</a>
15
+ </p>
16
+
17
+ -------
18
+
19
+ <h5 align="center"><em>frameit</em> is part of <a href="https://fastlane.tools">fastlane</a>: The easiest way to automate beta deployments and releases for your iOS and Android apps.</h5>
20
+
21
+
22
+ # Features
23
+
24
+ ## Frame screenshot
25
+
26
+ Put a gorgeous device frame around your iOS, macOS and Android screenshots just by running one simple command. Support for:
27
+
28
+ - iPhone, iPad and Mac
29
+ - Set of Android devices
30
+ - Portrait and Landscape modes
31
+ - Several device frame colors
32
+
33
+ The complete and updated list of supported devices and colors can be found [here](https://github.com/fastlane/frameit-frames/tree/gh-pages/latest)
34
+
35
+ Here is a nice gif, that shows _frameit_ in action:
36
+
37
+ ![img/actions/FrameitGit.gif](/img/actions/FrameitGit.gif?raw=1)
38
+
39
+ ## Advanced Features
40
+
41
+ - Put framed screenshot on colored background, define padding
42
+ - add text above or under framed screenshot
43
+ - keyword + text
44
+ - choose text font and color
45
+ - multi line text
46
+ - "intelligent" positioning of text that always looks good(ish)
47
+
48
+ ## Results
49
+
50
+ ![img/actions/ScreenshotsBig.png](/img/actions/ScreenshotsBig.png?raw=1)
51
+
52
+ -------
53
+
54
+ ![img/actions/ScreenshotsOverview.png](/img/actions/ScreenshotsOverview.png?raw=1)
55
+
56
+ -------
57
+
58
+ ![img/actions/MacExample.png](/img/actions/MacExample.png?raw=1)
59
+
60
+ <h5 align="center">The <em>frameit</em> 2.0 update was kindly sponsored by <a href="https://mindnode.com/">MindNode</a>, seen in the screenshots above.</h5>
61
+
62
+
63
+ The first time that _frameit_ is executed the frames will be downloaded automatically. Originally the frames are coming from [Facebook frameset](https://design.facebook.com/toolsandresources/devices/) and they are kept on [this repo](https://github.com/fastlane/frameit-frames).
64
+
65
+ More information about this process and how to update the frames can be found [here](https://github.com/fastlane/fastlane/tree/master/frameit/frames_generator)
66
+
67
+ # Usage
68
+
69
+ ## Basic Usage
70
+
71
+ Why should you have to use Photoshop, just to add a frame around your screenshots?
72
+
73
+ Just navigate to your folder of screenshots and use the following command (iOS and Mac OS are default platforms for backward compatibility):
74
+
75
+ ```no-highlight
76
+ fastlane frameit
77
+ ```
78
+
79
+ To frame Android screenshots:
80
+
81
+ ```no-highlight
82
+ fastlane frameit android
83
+ ```
84
+
85
+ To use the silver version of the frames:
86
+
87
+ ```no-highlight
88
+ fastlane frameit silver
89
+ ```
90
+
91
+ To download the latest frames
92
+
93
+ ```no-highlight
94
+ fastlane frameit download_frames
95
+ ```
96
+
97
+ Note: When using _frameit_ without titles on top, the screenshots will have the full resolution, which means they can't be uploaded to the App Store directly. They are supposed to be used for websites, print media and emails. Check out the section below to use the screenshots for the App Store.
98
+
99
+ ## Advanced Usage (optional)
100
+
101
+ ### Text and Background
102
+
103
+ With _frameit_ it's possible to add a custom background and text below or above the framed screenshots in fonts and colors you define.
104
+
105
+ A working example can be found in the [fastlane examples](https://github.com/fastlane/examples/tree/master/MindNode/screenshots) project.
106
+
107
+ ### `Framefile.json`
108
+
109
+ The Framefile allows to define general and screenshot specific information.
110
+ It has the following general JSON structure:
111
+
112
+ ```json
113
+ {
114
+ "device_frame_version": "latest",
115
+ "default": {
116
+ ...
117
+ },
118
+ "data": [
119
+ ...
120
+ ]
121
+ }
122
+ ```
123
+
124
+ ### General parameters
125
+
126
+ The general parameters are defined in the `default` key and can be:
127
+
128
+ | Key | Description | Default value |
129
+ |-----|-------------|---------------|
130
+ | `background` | The background that should be used for the framed screenshot. Specify the (relative) path to the image file (e.g. `*.jpg`). This parameter is mandatory. | NA |
131
+ | `keyword` | An object that contains up to 3 keys to describe the optional keyword. See [table](#keyword-and-title-parameters) below. | NA |
132
+ | `title` | An object that contains up to 3 keys to describe the mandatory title. See [table](#keyword-and-title-parameters) below. | NA |
133
+ | `stack_title` | Specifies whether _frameit_ should display the keyword above the title when both keyword and title are defined. If it is false, the title and keyword will be displayed side by side when both keyword and title are defined. | `false` |
134
+ | `title_below_image` | Specifies whether _frameit_ should place the title and optional keyword below the device frame. If it is false, it will be placed above the device frame. | `false` |
135
+ | `show_complete_frame` | Specifies whether _frameit_ should shrink the device frame so that it is completely shown in the framed screenshot. If it is false, clipping of the device frame might occur at the bottom (when `title_below_image` is `false`) or top (when `title_below_image` is `true`) of the framed screenshot. | `false` |
136
+ | `padding` | The content of the framed screenshot will be resized to match the specified `padding` around all edges. The vertical padding is also applied between the text and the top or bottom (depending on `title_below_image`) of the device frame. <p> There are 3 different options of specifying the padding: <p> 1. Default: An integer value that defines both horizontal and vertical padding in pixels. <br> 2. A string that defines (different) padding values in pixels for horizontal and vertical padding. The syntax is `"<horizontal>x<vertical>"`, e.g. `"30x60"`. <br> 3. A string that defines (different) padding values in percentage for horizontal and vertical padding. The syntax is `"<horizontal>%x<vertical>%"`, e.g. `"5%x10%"`. <br> **Note:** The percentage is calculated from the smallest image dimension (height or width). <p> A combination of option 2 and 3 is possible, e.g. `"5%x40"`. | `50` |
137
+ | `interline_spacing` | Specifies whether _frameit_ should add or subtract this many pixels between the individual lines of text. This only applies to a multi-line `title` and/or `keyword` to expand or squash together the individual lines of text. | `0` |
138
+ | `font_scale_factor` | Specifies whether _frameit_ should increase or decrease the font size of the text. Is ignored for `keyword` or `title`, if `font_size` is specified. | `0.1` |
139
+ | `frame` | Overrides the color of the frame to be used. (Valid values are `BLACK`, `WHITE`, `GOLD` and `ROSE_GOLD`) | NA |
140
+ | `title_min_height` | Specifies a height always reserved for the title. Value can be a percentage of the height or an absolute value. The device will be placed below (or above) this area. Convenient to ensure the device top (or bottom) will be consistently placed at the same height on the different screenshots. | NA |
141
+ | `use_platform` | Overrides the platform used for the screenshot. Valid values are `IOS`, `ANDROID` and `ANY`. | `IOS` |
142
+ | `force_device_type` | Forces a specific device. Valid values are: Huawei P8, Motorola Moto E, Motorola Moto G, Nexus 4, Nexus 5X, Nexus 6P, Nexus 9, Samsung Galaxy Grand Prime, Samsung Galaxy Note 5, Samsung Galaxy S Duos, Samsung Galaxy S3, Samsung Galaxy S5, Samsung Galaxy S7, Samsung Galaxy S8, Samsung Galaxy S9, iPhone 5s, iPhone 5c, iPhone SE, iPhone 6s, iPhone 6s Plus, iPhone 7, iPhone 7 Plus, iPhone 8, iPhone 8 Plus, iPhone X, iPhone XS, iPhone XR, iPhone XS Max, iPad Air 2, iPad Mini 4, iPad Pro, MacBook, Google Pixel 3, Google Pixel 3 XL, HTC One A9, HTC One M8 | NA |
143
+
144
+ ### Specific parameters
145
+
146
+ The screenshot specific parameters are related to the keyword and title texts.
147
+ These are defined in the `data` key. This is an array with the following keys for each screenshot:
148
+
149
+ | Key | Description |
150
+ |-----|-------------|
151
+ | `filter` | This is mandatory to link the individual configuration to the screenshot, based on part of the file name. <p>Example:<br>If a screenshot is named `iPhone 8-Brainstorming.png` you can use value `Brainstorming` for `filter`. If there are more than one `filter` matching an entry, they will all be applied in order (which means that the last one has the highest precedence). All other keys from that array element will only be applied on this specific screenshot. |
152
+ | `keyword` | Similar use as in `default`, except that parameter `text` can be used here because it is screenshot specific. |
153
+ | `title` | Similar use as in `default`, except that parameter `text` can be used here because it is screenshot specific. |
154
+ | `frame` | Overrides the color of the frame to be used. (Valid values are `BLACK`, `WHITE`, `GOLD` and `ROSE_GOLD`) | NA |
155
+ | `use_platform` | Overrides the platform used for the screenshot. Valid values are `IOS`, `ANDROID` and `ANY`. | `IOS` |
156
+ | `force_device_type` | Forces a specific device. Valid values are the same as for the general parameter. | NA |
157
+
158
+ ### <a name="keyword-and-title-parameters"></a>Framefile `keyword` and `title` parameters
159
+
160
+ The `keyword` and `title` parameters are both used in `default` and `data`. They both consist of the following optional keys:
161
+
162
+ | Key | Description | Default value |
163
+ |-----|-------------|---------------|
164
+ | `color` | The font color for the text. Specify a HEX/HTML color code. | `#000000` (black) |
165
+ | `font` | The font family for the text. Specify the (relative) path to the font file (e.g. an OpenType Font). | The default `imagemagick` font, which is system dependent. |
166
+ | `font_size` | The font size for the text specified in points. If not specified or `0`, font will be scaled automatically to fit the available space. _frameit_ still shrinks the text, if it would not fit. | NA |
167
+ | `font_weight` | The [font weight for the text](https://imagemagick.org/script/command-line-options.php#weight). Specify an integer value (e.g. 900). | NA |
168
+ | `text` | The text that should be used for the `keyword` or `title`. <p> Note: If you want to use localised text, use [`.strings` files](#strings-files). | NA |
169
+
170
+ ### Example
171
+
172
+ ```json
173
+ {
174
+ "device_frame_version": "latest",
175
+ "default": {
176
+ "keyword": {
177
+ "font": "./fonts/MyFont-Rg.otf"
178
+ },
179
+ "title": {
180
+ "font": "./fonts/MyFont-Th.otf",
181
+ "font_size": 128,
182
+ "color": "#545454"
183
+ },
184
+ "background": "./background.jpg",
185
+ "padding": 50,
186
+ "show_complete_frame": false,
187
+ "stack_title" : false,
188
+ "title_below_image": true,
189
+ "frame": "WHITE",
190
+ "use_platform": "IOS"
191
+ },
192
+
193
+ "data": [
194
+ {
195
+ "filter": "Brainstorming",
196
+ "keyword": {
197
+ "color": "#d21559"
198
+ }
199
+ },
200
+ {
201
+ "filter": "Organizing",
202
+ "keyword": {
203
+ "color": "#feb909"
204
+ },
205
+ "frame": "ROSE_GOLD"
206
+ },
207
+ {
208
+ "filter": "Sharing",
209
+ "keyword": {
210
+ "color": "#aa4dbc"
211
+ }
212
+ },
213
+ {
214
+ "filter": "Styling",
215
+ "keyword": {
216
+ "color": "#31bb48"
217
+ }
218
+ },
219
+ {
220
+ "filter": "Android",
221
+ "use_platform": "ANDROID"
222
+ }
223
+ ]
224
+ }
225
+ ```
226
+
227
+ You can find a more complex [configuration](https://github.com/fastlane/examples/blob/master/MindNode/screenshots/Framefile.json) to also support Chinese, Japanese and Korean languages.
228
+
229
+ The `Framefile.json` should be in the `screenshots` folder, as seen in the [example](https://github.com/fastlane/examples/tree/master/MindNode/screenshots).
230
+
231
+ ### `.strings` files
232
+
233
+ To define the title and optionally the keyword, put two `.strings` files into the language folder (e.g. [en-US in the example project](https://github.com/fastlane/examples/tree/master/MindNode/screenshots/en-US))
234
+
235
+ The `keyword.strings` and `title.strings` are standard `.strings` file you already use for your iOS apps, making it easy to use your existing translation service to get localized titles.
236
+
237
+ **Notes**
238
+
239
+ - These `.strings` files **MUST** be utf-8 (UTF-8) or utf-16 encoded (UTF-16 BE with BOM). They also must begin with an empty line. If you are having trouble see [issue #1740](https://github.com/fastlane/fastlane/issues/1740)
240
+ - You **MUST** provide a background if you want titles. _frameit_ will not add the titles if a background is not specified.
241
+
242
+ ### Screenshot orientation
243
+
244
+ By default _frameit_ adds a frame to your screenshot based on an orientation you took it. For a portrait (vertical orientation) it is going to add portrait frame and for a landscape (horizontal orientation) - landscape left (= [Home button on the left side](https://developer.apple.com/documentation/uikit/uiinterfaceorientation/landscapeleft)).
245
+
246
+ One way to override the default behavior is editing the file name by adding `force_landscaperight` to the end.
247
+
248
+ ### `force_orientation_block`
249
+
250
+ If the default behavior doesn't fit your needs and you don't want or can't rename your screenshots, you can customize _frameit_'s orientation behavior by setting a `force_orientation_block` parameter. The valid values are: `:landscape_left` (home button on the left side), `:landscape_right` (home button on the right side), `:portrait` (home button on the bottom), `nil` (home button on the right side).
251
+
252
+ ### Examples
253
+
254
+ ```ruby
255
+ # It matches the filename to the framed device orientation
256
+ frameit(
257
+ path: "./fastlane/screenshots",
258
+ force_orientation_block: proc do |filename|
259
+ case filename
260
+ when "iPad Pro (12.9-inch)-01LoginScreen"
261
+ :landscape_right
262
+ when "iPhone 6 Plus-01LoginScreen"
263
+ :portrait
264
+ # and so on
265
+ end
266
+ end
267
+ )
268
+ ```
269
+
270
+ ```ruby
271
+ # It frames the screenshots in landscape right whenever the filename contains `landscape` word
272
+ frameit(
273
+ silver: true,
274
+ path: "./fastlane/screenshots",
275
+ force_orientation_block: proc do |filename|
276
+ f = filename.downcase
277
+ if f.include?("landscape")
278
+ :landscape_right
279
+ end
280
+ end
281
+ )
282
+ ```
283
+
284
+ # Mac
285
+
286
+ With _frameit_ it's possible to also frame macOS Application screenshots. You have to provide the following:
287
+
288
+ - A (relative) path to a `background` image file, which should contain both the background and the Mac.
289
+ - The `offset` information so _frameit_ knows where to position your screenshot on the `background`:
290
+ - `offset` : A string that specifies the horizontal and vertical offset in pixels, with respect to the top left corner of the `background` image. The syntax is `"+<horizontal>+<vertical>"`, e.g. `"+200+150"`.
291
+ - `titleHeight` : The height in pixels that should be used for the title.
292
+
293
+ ## Example
294
+ ```json
295
+ {
296
+ "default": {
297
+ "title": {
298
+ "color": "#545454"
299
+ },
300
+ "background": "Mac.jpg",
301
+ "offset": {
302
+ "offset": "+676+479",
303
+ "titleHeight": 320
304
+ }
305
+ },
306
+ "data": [
307
+ {
308
+ "filter": "Brainstorming",
309
+ "keyword": {
310
+ "color": "#d21559"
311
+ }
312
+ }
313
+ ]
314
+ }
315
+ ```
316
+
317
+ Check out the [MindNode example project](https://github.com/fastlane/examples/tree/master/MindNode/screenshots).
318
+
319
+ # Tips
320
+
321
+ ## Generate localized screenshots
322
+
323
+ Check out [_snapshot_](https://docs.fastlane.tools/actions/snapshot/) to automatically generate screenshots using ```UI Automation```.
324
+
325
+ ## Resume framing
326
+
327
+ Framing screenshots is a slow operation. In case you need to resume framing, or just frame a couple updated screenshots again, you can rely on the `--resume` flag. Only screenshots which have not been framed yet – or for which there isn't an up-to-date framed image – will be framed. This feature uses the file modification dates and will reframe screenshots if the screenshot is newer than the framed file.
328
+
329
+ ## Upload screenshots
330
+
331
+ Use [_deliver_](https://docs.fastlane.tools/actions/deliver/) to upload iOS screenshots to App Store Connect, or [_supply_](https://docs.fastlane.tools/actions/supply/) to upload Android screenshots to Play Store completely automatically 🚀
332
+
333
+ ## Use a clean status bar
334
+
335
+ You can set `override_status_bar` to `true` in snapshot to set the status bar to Tuesday January 9th at 9:41AM with full battery and reception. If you need more granular customization, to set a Carrier name for example, also set `override_status_bar_arguments` to the specific arguments to be passed to the `xcrun simctl status_bar override` command. Run `xcrun simctl status_bar --help` to see the options available.
336
+
337
+ ### Examples
338
+
339
+ ```ruby
340
+ # Sets the time to 9:41AM with full battery and reception, with the default carrier name: Carrier
341
+ capture_ios_screenshots(
342
+ override_status_bar: true
343
+ )
344
+ ```
345
+
346
+ ```ruby
347
+ # Set the time to 9:41AM, battery at 75% and charging, on the TELUS LTE network
348
+ capture_ios_screenshots(
349
+ override_status_bar: true,
350
+ override_status_bar_arguments: "--time 9:41 --dataNetwork lte --cellularMode active --cellularBars 4 --batteryState charging --batteryLevel 75 --operatorName TELUS"
351
+ )
352
+ ```
353
+
354
+ ## Gray artifacts around text
355
+
356
+ If you run into any quality issues, like having a border around the font, it usually helps to just re-install `imagemagick`. You can do so by running
357
+
358
+ ```sh
359
+ brew uninstall imagemagick
360
+ brew install imagemagick
361
+ ```
362
+
363
+ ## Uninstall
364
+
365
+ - `gem uninstall fastlane`
366
+ - `rm -rf ~/.frameit`
@@ -0,0 +1,86 @@
1
+ <p align="center">
2
+ <img src="/img/actions/cert.png" width="250">
3
+ </p>
4
+
5
+ -------
6
+ <p align="center">
7
+ <a href="#why">Why?</a> &bull;
8
+ <a href="#usage">Usage</a> &bull;
9
+ <a href="#how-does-it-work">How does it work?</a> &bull;
10
+ <a href="#tips">Tips</a>
11
+ </p>
12
+
13
+ -------
14
+
15
+ <h5 align="center"><em>cert</em> is part of <a href="https://fastlane.tools">fastlane</a>: The easiest way to automate beta deployments and releases for your iOS and Android apps.</h5>
16
+
17
+ ![/img/actions/cert.gif](/img/actions/cert.gif)
18
+
19
+ In the gif we used `cert && sigh`, which will first create an iOS code signing certificate and then a provisioning profile for your app if _cert_ succeeded.
20
+
21
+ # Usage
22
+
23
+ **Note**: It is recommended to use [_match_](/actions/match/) according to the [codesigning.guide](https://codesigning.guide) for generating and maintaining your certificates. Use _cert_ directly only if you want full control over what's going on and know more about codesigning.
24
+
25
+ ```no-highlight
26
+ fastlane cert
27
+ ```
28
+
29
+ This will check if any of the available signing certificates is installed on your local machine.
30
+
31
+ Only if a new certificate needs to be created, _cert_ will
32
+
33
+ - Create a new private key
34
+ - Create a new signing request
35
+ - Generate, downloads and installs the certificate
36
+ - Import all the generated files into your Keychain
37
+
38
+ _cert_ will never revoke your existing certificates. If you can't create any more certificates, _cert_ will raise an exception, which means, you have to revoke one of the existing certificates to make room for a new one.
39
+
40
+
41
+ You can pass your Apple ID:
42
+
43
+ ```no-highlight
44
+ fastlane cert -u cert@krausefx.com
45
+ ```
46
+
47
+ For a list of available commands run
48
+
49
+ ```no-highlight
50
+ fastlane action cert
51
+ ```
52
+
53
+ Keep in mind, there is no way for _cert_ to download existing certificates + private keys from the Apple Developer Portal, as the private key never leaves your computer.
54
+
55
+ ## Environment Variables
56
+
57
+ Run `fastlane action cert` to get a list of all available environment variables.
58
+
59
+ ## Use with [_sigh_](https://docs.fastlane.tools/actions/sigh/)
60
+
61
+ _cert_ becomes really interesting when used in [_fastlane_](https://fastlane.tools) in combination with [_sigh_](https://docs.fastlane.tools/actions/sigh/).
62
+
63
+ Update your `Fastfile` to contain the following code:
64
+
65
+ ```ruby
66
+ lane :beta do
67
+ cert
68
+ sigh(force: true)
69
+ end
70
+ ```
71
+
72
+ `force: true` will make sure to re-generate the provisioning profile on each run.
73
+ This will result in _sigh_ always using the correct signing certificate, which is installed on the local machine.
74
+
75
+
76
+ ## How is my password stored?
77
+ _cert_ uses the [password manager](https://github.com/fastlane/fastlane/tree/master/credentials_manager) from _fastlane_. Take a look the [CredentialsManager README](https://github.com/fastlane/fastlane/blob/master/credentials_manager/README.md) for more information.
78
+
79
+ # Tips
80
+
81
+ ## Use 'ProvisionQL' for advanced Quick Look in Finder
82
+
83
+ Install [ProvisionQL](https://github.com/ealeksandrov/ProvisionQL).
84
+
85
+ It will show you `mobileprovision` files like this:
86
+ ![img/actions/QuickLookScreenshot-Provision.png](/img/actions/QuickLookScreenshot-Provision.png)
@@ -0,0 +1,223 @@
1
+ <p align="center">
2
+ <img src="/img/actions/sigh.png" width="250">
3
+ </p>
4
+
5
+ ###### Because you would rather spend your time building stuff than fighting provisioning
6
+
7
+ _sigh_ can create, renew, download and repair provisioning profiles (with one command). It supports App Store, Ad Hoc, Development and Enterprise profiles and supports nice features, like auto-adding all test devices.
8
+
9
+ -------
10
+
11
+ <p align="center">
12
+ <a href="#features">Features</a> &bull;
13
+ <a href="#usage">Usage</a> &bull;
14
+ <a href="#resign">Resign</a> &bull;
15
+ <a href="#how-does-it-work">How does it work?</a>
16
+ </p>
17
+
18
+ -------
19
+
20
+ # Features
21
+
22
+ - **Download** the latest provisioning profile for your app
23
+ - **Renew** a provisioning profile, when it has expired
24
+ - **Repair** a provisioning profile, when it is broken
25
+ - **Create** a new provisioning profile, if it doesn't exist already
26
+ - Supports **App Store**, **Ad Hoc** and **Development** profiles
27
+ - Support for **multiple Apple accounts**, storing your credentials securely in the Keychain
28
+ - Support for **multiple Teams**
29
+ - Support for **Enterprise Profiles**
30
+
31
+ To automate iOS Push profiles you can use [_pem_](https://docs.fastlane.tools/actions/pem/).
32
+
33
+
34
+ ### Why not let Xcode do the work?
35
+
36
+ - _sigh_ can easily be integrated into your CI-server (e.g. Jenkins)
37
+ - Xcode sometimes invalidates [all existing profiles](/img/actions/SignErrors.png)
38
+ - You have control over what happens
39
+ - You still get to have the signing files, which you can then use for your build scripts or store in git
40
+
41
+ See _sigh_ in action:
42
+
43
+ ![img/actions/sighRecording.gif](/img/actions/sighRecording.gif)
44
+
45
+ # Usage
46
+
47
+ **Note**: It is recommended to use [_match_](https://docs.fastlane.tools/actions/match/) according to the [codesigning.guide](https://codesigning.guide) for generating and maintaining your provisioning profiles. Use _sigh_ directly only if you want full control over what's going on and know more about codesigning.
48
+
49
+ ```no-highlight
50
+ fastlane sigh
51
+ ```
52
+
53
+ Yes, that's the whole command!
54
+
55
+ _sigh_ will create, repair and download profiles for the App Store by default.
56
+
57
+ You can pass your bundle identifier and username like this:
58
+
59
+ ```no-highlight
60
+ fastlane sigh -a com.krausefx.app -u username
61
+ ```
62
+
63
+ If you want to generate an **Ad Hoc** profile instead of an App Store profile:
64
+
65
+ ```no-highlight
66
+ fastlane sigh --adhoc
67
+ ```
68
+
69
+ If you want to generate a **Development** profile:
70
+
71
+ ```no-highlight
72
+ fastlane sigh --development
73
+ ```
74
+
75
+ To generate the profile in a specific directory:
76
+
77
+ ```no-highlight
78
+ fastlane sigh -o "~/Certificates/"
79
+ ```
80
+
81
+ To download all your provisioning profiles use
82
+
83
+ ```no-highlight
84
+ fastlane sigh download_all
85
+ ```
86
+
87
+ Optionally, use `fastlane sigh download_all --download_xcode_profiles` to also include the Xcode managed provisioning profiles
88
+
89
+ For a list of available parameters and commands run
90
+
91
+ ```no-highlight
92
+ fastlane action sigh
93
+ ```
94
+
95
+ ### Advanced
96
+
97
+ By default, _sigh_ will install the downloaded profile on your machine. If you just want to generate the profile and skip the installation, use the following flag:
98
+
99
+ ```no-highlight
100
+ fastlane sigh --skip_install
101
+ ```
102
+
103
+ To save the provisioning profile under a specific name, use the -q option:
104
+
105
+ ```no-highlight
106
+ fastlane sigh -a com.krausefx.app -u username -q "myProfile.mobileprovision"
107
+ ```
108
+
109
+ If for some reason you don't want _sigh_ to verify that the code signing identity is installed on your local machine:
110
+
111
+ ```no-highlight
112
+ fastlane sigh --skip_certificate_verification
113
+ ```
114
+
115
+ If you need the provisioning profile to be renewed regardless of its state use the `--force` option. This gives you a profile with the maximum lifetime. `--force` will also add all available devices to this profile.
116
+
117
+ ```no-highlight
118
+ fastlane sigh --force
119
+ ```
120
+
121
+ By default, _sigh_ will include all certificates on development profiles, and first certificate on other types. If you need to specify which certificate to use you can either use the environment variable `SIGH_CERTIFICATE`, or pass the name or expiry date of the certificate as argument:
122
+
123
+ ```no-highlight
124
+ fastlane sigh -c "SunApps GmbH"
125
+ ```
126
+
127
+ For a list of available parameters and commands run
128
+
129
+ ```no-highlight
130
+ fastlane action sigh
131
+ ```
132
+
133
+
134
+ ### Use with [_fastlane_](https://fastlane.tools)
135
+
136
+ _sigh_ becomes really interesting when used in [_fastlane_](https://fastlane.tools) in combination with [_cert_](https://docs.fastlane.tools/actions/cert/).
137
+
138
+ Update your `Fastfile` to contain the following code:
139
+
140
+ ```ruby
141
+ lane :beta do
142
+ cert
143
+ sigh(force: true)
144
+ end
145
+ ```
146
+
147
+ `force: true` will make sure to re-generate the provisioning profile on each run.
148
+ This will result in _sigh_ always using the correct signing certificate, which is installed on the local machine.
149
+
150
+
151
+ # Repair
152
+
153
+ _sigh_ can automatically repair all your existing provisioning profiles which are expired or just invalid.
154
+
155
+ ```no-highlight
156
+ fastlane sigh repair
157
+ ```
158
+
159
+ # Resign
160
+
161
+ If you generated your `ipa` file but want to apply a different code signing onto the ipa file, you can use `sigh resign`:
162
+
163
+ ```no-highlight
164
+ fastlane sigh resign
165
+ ```
166
+
167
+ _sigh_ will find the ipa file and the provisioning profile for you if they are located in the current folder.
168
+
169
+ You can pass more information using the command line:
170
+
171
+ ```no-highlight
172
+ fastlane sigh resign ./path/app.ipa --signing_identity "iPhone Distribution: Felix Krause" -p "my.mobileprovision"
173
+ ```
174
+
175
+ # Manage
176
+
177
+ With `sigh manage` you can list all provisioning profiles installed locally.
178
+
179
+ ```no-highlight
180
+ fastlane sigh manage
181
+ ```
182
+
183
+ Delete all expired provisioning profiles
184
+
185
+ ```no-highlight
186
+ fastlane sigh manage -e
187
+ ```
188
+
189
+ Or delete all `iOS Team Provisioning Profile` by using a regular expression
190
+
191
+ ```no-highlight
192
+ fastlane sigh manage -p "iOS\ ?Team Provisioning Profile:"
193
+ ```
194
+
195
+ ## Environment Variables
196
+
197
+ Run `fastlane action sigh` to get a list of all available environment variables.
198
+
199
+ If you're using [_cert_](https://docs.fastlane.tools/actions/cert/) in combination with [_fastlane_](https://fastlane.tools) the signing certificate will automatically be selected for you. (make sure to run _cert_ before _sigh_)
200
+
201
+ # How does it work?
202
+
203
+ _sigh_ will access the `iOS Dev Center` to download, renew or generate the `.mobileprovision` file. It uses [_spaceship_](https://spaceship.airforce) to communicate with Apple's web services.
204
+
205
+ ## How is my password stored?
206
+ _sigh_ uses the [CredentialsManager](https://github.com/fastlane/fastlane/tree/master/credentials_manager) from _fastlane_.
207
+
208
+ # Tips
209
+
210
+ ## Use 'ProvisionQL' for advanced Quick Look in Finder
211
+
212
+ Install [ProvisionQL](https://github.com/ealeksandrov/ProvisionQL).
213
+
214
+ It will show you `mobileprovision` files like this:
215
+ ![img/actions/QuickLookScreenshot-Provision.png](/img/actions/QuickLookScreenshot-Provision.png)
216
+
217
+ ## App Identifier couldn't be found
218
+
219
+ If you also want to create a new App Identifier on the Apple Developer Portal, check out [_produce_](https://docs.fastlane.tools/actions/produce/), which does exactly that.
220
+
221
+ ## What happens to my Xcode managed profiles?
222
+
223
+ _sigh_ will never touch or use the profiles which are created and managed by Xcode. Instead _sigh_ will manage its own set of provisioning profiles.