fastlane_iac_publish 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (808) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +1 -0
  3. data/LICENSE +21 -0
  4. data/README.md +195 -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.rb +4 -0
  9. data/cert/lib/cert/commands_generator.rb +59 -0
  10. data/cert/lib/cert/module.rb +14 -0
  11. data/cert/lib/cert/options.rb +92 -0
  12. data/cert/lib/cert/runner.rb +203 -0
  13. data/credentials_manager/README.md +64 -0
  14. data/credentials_manager/lib/credentials_manager.rb +7 -0
  15. data/credentials_manager/lib/credentials_manager/account_manager.rb +157 -0
  16. data/credentials_manager/lib/credentials_manager/appfile_config.rb +192 -0
  17. data/credentials_manager/lib/credentials_manager/cli.rb +67 -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 +7 -0
  22. data/deliver/lib/assets/summary.html.erb +299 -0
  23. data/deliver/lib/deliver.rb +15 -0
  24. data/deliver/lib/deliver/app_screenshot.rb +352 -0
  25. data/deliver/lib/deliver/commands_generator.rb +186 -0
  26. data/deliver/lib/deliver/detect_values.rb +93 -0
  27. data/deliver/lib/deliver/download_screenshots.rb +49 -0
  28. data/deliver/lib/deliver/generate_summary.rb +13 -0
  29. data/deliver/lib/deliver/html_generator.rb +71 -0
  30. data/deliver/lib/deliver/loader.rb +56 -0
  31. data/deliver/lib/deliver/module.rb +16 -0
  32. data/deliver/lib/deliver/options.rb +419 -0
  33. data/deliver/lib/deliver/runner.rb +202 -0
  34. data/deliver/lib/deliver/setup.rb +135 -0
  35. data/deliver/lib/deliver/submit_for_review.rb +122 -0
  36. data/deliver/lib/deliver/upload_assets.rb +27 -0
  37. data/deliver/lib/deliver/upload_metadata.rb +391 -0
  38. data/deliver/lib/deliver/upload_price_tier.rb +23 -0
  39. data/deliver/lib/deliver/upload_screenshots.rb +158 -0
  40. data/fastlane/README.md +11 -0
  41. data/fastlane/lib/assets/ActionDetails.md.erb +106 -0
  42. data/fastlane/lib/assets/Actions.md.erb +43 -0
  43. data/fastlane/lib/assets/AppfileTemplate +6 -0
  44. data/fastlane/lib/assets/AppfileTemplate.swift +7 -0
  45. data/fastlane/lib/assets/AppfileTemplateAndroid +2 -0
  46. data/fastlane/lib/assets/DefaultFastfileTemplate +20 -0
  47. data/fastlane/lib/assets/DefaultFastfileTemplate.swift +13 -0
  48. data/fastlane/lib/assets/completions/completion.bash +23 -0
  49. data/fastlane/lib/assets/completions/completion.fish +39 -0
  50. data/fastlane/lib/assets/completions/completion.sh +12 -0
  51. data/fastlane/lib/assets/completions/completion.zsh +23 -0
  52. data/fastlane/lib/assets/custom_action_template.rb +82 -0
  53. data/fastlane/lib/assets/mailgun_html_template.erb +142 -0
  54. data/fastlane/lib/assets/report_template.xml.erb +15 -0
  55. data/fastlane/lib/assets/s3_html_template.erb +105 -0
  56. data/fastlane/lib/assets/s3_plist_template.erb +31 -0
  57. data/fastlane/lib/assets/s3_version_template.erb +4 -0
  58. data/fastlane/lib/fastlane.rb +50 -0
  59. data/fastlane/lib/fastlane/action.rb +198 -0
  60. data/fastlane/lib/fastlane/action_collector.rb +35 -0
  61. data/fastlane/lib/fastlane/actions/README.md +3 -0
  62. data/fastlane/lib/fastlane/actions/actions_helper.rb +162 -0
  63. data/fastlane/lib/fastlane/actions/adb.rb +78 -0
  64. data/fastlane/lib/fastlane/actions/adb_devices.rb +71 -0
  65. data/fastlane/lib/fastlane/actions/add_extra_platforms.rb +45 -0
  66. data/fastlane/lib/fastlane/actions/add_git_tag.rb +122 -0
  67. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +193 -0
  68. data/fastlane/lib/fastlane/actions/appaloosa.rb +266 -0
  69. data/fastlane/lib/fastlane/actions/appetize.rb +188 -0
  70. data/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +146 -0
  71. data/fastlane/lib/fastlane/actions/appium.rb +206 -0
  72. data/fastlane/lib/fastlane/actions/appledoc.rb +226 -0
  73. data/fastlane/lib/fastlane/actions/appstore.rb +14 -0
  74. data/fastlane/lib/fastlane/actions/apteligent.rb +105 -0
  75. data/fastlane/lib/fastlane/actions/artifactory.rb +157 -0
  76. data/fastlane/lib/fastlane/actions/automatic_code_signing.rb +220 -0
  77. data/fastlane/lib/fastlane/actions/backup_file.rb +41 -0
  78. data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +135 -0
  79. data/fastlane/lib/fastlane/actions/badge.rb +155 -0
  80. data/fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb +107 -0
  81. data/fastlane/lib/fastlane/actions/build_android_app.rb +14 -0
  82. data/fastlane/lib/fastlane/actions/build_app.rb +14 -0
  83. data/fastlane/lib/fastlane/actions/build_ios_app.rb +151 -0
  84. data/fastlane/lib/fastlane/actions/bundle_install.rb +156 -0
  85. data/fastlane/lib/fastlane/actions/capture_android_screenshots.rb +63 -0
  86. data/fastlane/lib/fastlane/actions/capture_ios_screenshots.rb +61 -0
  87. data/fastlane/lib/fastlane/actions/capture_screenshots.rb +14 -0
  88. data/fastlane/lib/fastlane/actions/carthage.rb +215 -0
  89. data/fastlane/lib/fastlane/actions/cert.rb +14 -0
  90. data/fastlane/lib/fastlane/actions/changelog_from_git_commits.rb +197 -0
  91. data/fastlane/lib/fastlane/actions/chatwork.rb +94 -0
  92. data/fastlane/lib/fastlane/actions/check_app_store_metadata.rb +53 -0
  93. data/fastlane/lib/fastlane/actions/clean_build_artifacts.rb +68 -0
  94. data/fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb +52 -0
  95. data/fastlane/lib/fastlane/actions/clear_derived_data.rb +70 -0
  96. data/fastlane/lib/fastlane/actions/clipboard.rb +52 -0
  97. data/fastlane/lib/fastlane/actions/cloc.rb +89 -0
  98. data/fastlane/lib/fastlane/actions/cocoapods.rb +148 -0
  99. data/fastlane/lib/fastlane/actions/commit_github_file.rb +186 -0
  100. data/fastlane/lib/fastlane/actions/commit_version_bump.rb +301 -0
  101. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +114 -0
  102. data/fastlane/lib/fastlane/actions/crashlytics.rb +203 -0
  103. data/fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb +174 -0
  104. data/fastlane/lib/fastlane/actions/create_app_online.rb +75 -0
  105. data/fastlane/lib/fastlane/actions/create_keychain.rb +173 -0
  106. data/fastlane/lib/fastlane/actions/create_pull_request.rb +190 -0
  107. data/fastlane/lib/fastlane/actions/danger.rb +124 -0
  108. data/fastlane/lib/fastlane/actions/debug.rb +32 -0
  109. data/fastlane/lib/fastlane/actions/default_platform.rb +47 -0
  110. data/fastlane/lib/fastlane/actions/delete_keychain.rb +68 -0
  111. data/fastlane/lib/fastlane/actions/deliver.rb +14 -0
  112. data/fastlane/lib/fastlane/actions/deploygate.rb +210 -0
  113. data/fastlane/lib/fastlane/actions/device_grid/README.md +157 -0
  114. data/fastlane/lib/fastlane/actions/docs/build_ios_app.md +245 -0
  115. data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +259 -0
  116. data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +363 -0
  117. data/fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md +103 -0
  118. data/fastlane/lib/fastlane/actions/docs/create_app_online.md +282 -0
  119. data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +330 -0
  120. data/fastlane/lib/fastlane/actions/docs/get_certificates.md +86 -0
  121. data/fastlane/lib/fastlane/actions/docs/get_provisioning_profile.md +223 -0
  122. data/fastlane/lib/fastlane/actions/docs/get_push_certificate.md +134 -0
  123. data/fastlane/lib/fastlane/actions/docs/run_tests.md +151 -0
  124. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +479 -0
  125. data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +730 -0
  126. data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +162 -0
  127. data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +231 -0
  128. data/fastlane/lib/fastlane/actions/dotgpg_environment.rb +57 -0
  129. data/fastlane/lib/fastlane/actions/download.rb +76 -0
  130. data/fastlane/lib/fastlane/actions/download_dsyms.rb +266 -0
  131. data/fastlane/lib/fastlane/actions/download_from_play_store.rb +61 -0
  132. data/fastlane/lib/fastlane/actions/dsym_zip.rb +93 -0
  133. data/fastlane/lib/fastlane/actions/echo.rb +14 -0
  134. data/fastlane/lib/fastlane/actions/ensure_bundle_exec.rb +59 -0
  135. data/fastlane/lib/fastlane/actions/ensure_git_branch.rb +69 -0
  136. data/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb +81 -0
  137. data/fastlane/lib/fastlane/actions/ensure_no_debug_code.rb +135 -0
  138. data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +97 -0
  139. data/fastlane/lib/fastlane/actions/environment_variable.rb +77 -0
  140. data/fastlane/lib/fastlane/actions/erb.rb +88 -0
  141. data/fastlane/lib/fastlane/actions/fastlane_version.rb +15 -0
  142. data/fastlane/lib/fastlane/actions/flock.rb +82 -0
  143. data/fastlane/lib/fastlane/actions/frame_screenshots.rb +63 -0
  144. data/fastlane/lib/fastlane/actions/frameit.rb +14 -0
  145. data/fastlane/lib/fastlane/actions/gcovr.rb +163 -0
  146. data/fastlane/lib/fastlane/actions/get_build_number.rb +106 -0
  147. data/fastlane/lib/fastlane/actions/get_build_number_repository.rb +120 -0
  148. data/fastlane/lib/fastlane/actions/get_certificates.rb +76 -0
  149. data/fastlane/lib/fastlane/actions/get_github_release.rb +163 -0
  150. data/fastlane/lib/fastlane/actions/get_info_plist_value.rb +78 -0
  151. data/fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb +82 -0
  152. data/fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb +120 -0
  153. data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +100 -0
  154. data/fastlane/lib/fastlane/actions/get_push_certificate.rb +87 -0
  155. data/fastlane/lib/fastlane/actions/get_version_number.rb +170 -0
  156. data/fastlane/lib/fastlane/actions/git_add.rb +93 -0
  157. data/fastlane/lib/fastlane/actions/git_branch.rb +58 -0
  158. data/fastlane/lib/fastlane/actions/git_commit.rb +80 -0
  159. data/fastlane/lib/fastlane/actions/git_pull.rb +53 -0
  160. data/fastlane/lib/fastlane/actions/git_submodule_update.rb +52 -0
  161. data/fastlane/lib/fastlane/actions/git_tag_exists.rb +74 -0
  162. data/fastlane/lib/fastlane/actions/github_api.rb +262 -0
  163. data/fastlane/lib/fastlane/actions/google_play_track_version_codes.rb +73 -0
  164. data/fastlane/lib/fastlane/actions/gradle.rb +249 -0
  165. data/fastlane/lib/fastlane/actions/gym.rb +14 -0
  166. data/fastlane/lib/fastlane/actions/hg_add_tag.rb +48 -0
  167. data/fastlane/lib/fastlane/actions/hg_commit_version_bump.rb +183 -0
  168. data/fastlane/lib/fastlane/actions/hg_ensure_clean_status.rb +53 -0
  169. data/fastlane/lib/fastlane/actions/hg_push.rb +64 -0
  170. data/fastlane/lib/fastlane/actions/hipchat.rb +200 -0
  171. data/fastlane/lib/fastlane/actions/hockey.rb +406 -0
  172. data/fastlane/lib/fastlane/actions/ifttt.rb +96 -0
  173. data/fastlane/lib/fastlane/actions/import.rb +49 -0
  174. data/fastlane/lib/fastlane/actions/import_certificate.rb +77 -0
  175. data/fastlane/lib/fastlane/actions/import_from_git.rb +71 -0
  176. data/fastlane/lib/fastlane/actions/increment_build_number.rb +117 -0
  177. data/fastlane/lib/fastlane/actions/increment_version_number.rb +177 -0
  178. data/fastlane/lib/fastlane/actions/install_on_device.rb +95 -0
  179. data/fastlane/lib/fastlane/actions/install_provisioning_profile.rb +58 -0
  180. data/fastlane/lib/fastlane/actions/install_xcode_plugin.rb +91 -0
  181. data/fastlane/lib/fastlane/actions/installr.rb +132 -0
  182. data/fastlane/lib/fastlane/actions/ipa.rb +246 -0
  183. data/fastlane/lib/fastlane/actions/is_ci.rb +51 -0
  184. data/fastlane/lib/fastlane/actions/jazzy.rb +56 -0
  185. data/fastlane/lib/fastlane/actions/jira.rb +115 -0
  186. data/fastlane/lib/fastlane/actions/lane_context.rb +60 -0
  187. data/fastlane/lib/fastlane/actions/last_git_commit.rb +58 -0
  188. data/fastlane/lib/fastlane/actions/last_git_tag.rb +51 -0
  189. data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +134 -0
  190. data/fastlane/lib/fastlane/actions/lcov.rb +102 -0
  191. data/fastlane/lib/fastlane/actions/mailgun.rb +197 -0
  192. data/fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb +81 -0
  193. data/fastlane/lib/fastlane/actions/match.rb +14 -0
  194. data/fastlane/lib/fastlane/actions/min_fastlane_version.rb +57 -0
  195. data/fastlane/lib/fastlane/actions/modify_services.rb +173 -0
  196. data/fastlane/lib/fastlane/actions/nexus_upload.rb +230 -0
  197. data/fastlane/lib/fastlane/actions/notification.rb +75 -0
  198. data/fastlane/lib/fastlane/actions/notify.rb +40 -0
  199. data/fastlane/lib/fastlane/actions/number_of_commits.rb +75 -0
  200. data/fastlane/lib/fastlane/actions/oclint.rb +269 -0
  201. data/fastlane/lib/fastlane/actions/onesignal.rb +156 -0
  202. data/fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb +33 -0
  203. data/fastlane/lib/fastlane/actions/opt_out_usage.rb +40 -0
  204. data/fastlane/lib/fastlane/actions/pem.rb +14 -0
  205. data/fastlane/lib/fastlane/actions/pilot.rb +14 -0
  206. data/fastlane/lib/fastlane/actions/pod_lib_lint.rb +183 -0
  207. data/fastlane/lib/fastlane/actions/pod_push.rb +145 -0
  208. data/fastlane/lib/fastlane/actions/podio_item.rb +217 -0
  209. data/fastlane/lib/fastlane/actions/precheck.rb +14 -0
  210. data/fastlane/lib/fastlane/actions/println.rb +14 -0
  211. data/fastlane/lib/fastlane/actions/produce.rb +14 -0
  212. data/fastlane/lib/fastlane/actions/prompt.rb +119 -0
  213. data/fastlane/lib/fastlane/actions/push_git_tags.rb +76 -0
  214. data/fastlane/lib/fastlane/actions/push_to_git_remote.rb +127 -0
  215. data/fastlane/lib/fastlane/actions/puts.rb +68 -0
  216. data/fastlane/lib/fastlane/actions/read_podspec.rb +90 -0
  217. data/fastlane/lib/fastlane/actions/recreate_schemes.rb +46 -0
  218. data/fastlane/lib/fastlane/actions/register_device.rb +110 -0
  219. data/fastlane/lib/fastlane/actions/register_devices.rb +160 -0
  220. data/fastlane/lib/fastlane/actions/reset_git_repo.rb +121 -0
  221. data/fastlane/lib/fastlane/actions/reset_simulator_contents.rb +92 -0
  222. data/fastlane/lib/fastlane/actions/resign.rb +132 -0
  223. data/fastlane/lib/fastlane/actions/restore_file.rb +44 -0
  224. data/fastlane/lib/fastlane/actions/rocket.rb +83 -0
  225. data/fastlane/lib/fastlane/actions/rsync.rb +74 -0
  226. data/fastlane/lib/fastlane/actions/ruby_version.rb +56 -0
  227. data/fastlane/lib/fastlane/actions/run_tests.rb +131 -0
  228. data/fastlane/lib/fastlane/actions/s3.rb +460 -0
  229. data/fastlane/lib/fastlane/actions/say.rb +56 -0
  230. data/fastlane/lib/fastlane/actions/scan.rb +14 -0
  231. data/fastlane/lib/fastlane/actions/scp.rb +114 -0
  232. data/fastlane/lib/fastlane/actions/screengrab.rb +14 -0
  233. data/fastlane/lib/fastlane/actions/set_build_number_repository.rb +76 -0
  234. data/fastlane/lib/fastlane/actions/set_changelog.rb +172 -0
  235. data/fastlane/lib/fastlane/actions/set_github_release.rb +274 -0
  236. data/fastlane/lib/fastlane/actions/set_info_plist_value.rb +92 -0
  237. data/fastlane/lib/fastlane/actions/set_pod_key.rb +78 -0
  238. data/fastlane/lib/fastlane/actions/setup_ci.rb +121 -0
  239. data/fastlane/lib/fastlane/actions/setup_circle_ci.rb +58 -0
  240. data/fastlane/lib/fastlane/actions/setup_jenkins.rb +193 -0
  241. data/fastlane/lib/fastlane/actions/setup_travis.rb +57 -0
  242. data/fastlane/lib/fastlane/actions/sh.rb +71 -0
  243. data/fastlane/lib/fastlane/actions/sigh.rb +14 -0
  244. data/fastlane/lib/fastlane/actions/skip_docs.rb +52 -0
  245. data/fastlane/lib/fastlane/actions/slack.rb +288 -0
  246. data/fastlane/lib/fastlane/actions/slather.rb +314 -0
  247. data/fastlane/lib/fastlane/actions/snapshot.rb +14 -0
  248. data/fastlane/lib/fastlane/actions/sonar.rb +138 -0
  249. data/fastlane/lib/fastlane/actions/spaceship_logs.rb +135 -0
  250. data/fastlane/lib/fastlane/actions/splunkmint.rb +156 -0
  251. data/fastlane/lib/fastlane/actions/spm.rb +123 -0
  252. data/fastlane/lib/fastlane/actions/ssh.rb +162 -0
  253. data/fastlane/lib/fastlane/actions/supply.rb +14 -0
  254. data/fastlane/lib/fastlane/actions/swiftlint.rb +182 -0
  255. data/fastlane/lib/fastlane/actions/sync_code_signing.rb +103 -0
  256. data/fastlane/lib/fastlane/actions/team_id.rb +42 -0
  257. data/fastlane/lib/fastlane/actions/team_name.rb +42 -0
  258. data/fastlane/lib/fastlane/actions/testfairy.rb +263 -0
  259. data/fastlane/lib/fastlane/actions/testflight.rb +14 -0
  260. data/fastlane/lib/fastlane/actions/tryouts.rb +149 -0
  261. data/fastlane/lib/fastlane/actions/twitter.rb +89 -0
  262. data/fastlane/lib/fastlane/actions/typetalk.rb +93 -0
  263. data/fastlane/lib/fastlane/actions/unlock_keychain.rb +132 -0
  264. data/fastlane/lib/fastlane/actions/update_app_group_identifiers.rb +91 -0
  265. data/fastlane/lib/fastlane/actions/update_app_identifier.rb +124 -0
  266. data/fastlane/lib/fastlane/actions/update_fastlane.rb +177 -0
  267. data/fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb +99 -0
  268. data/fastlane/lib/fastlane/actions/update_info_plist.rb +143 -0
  269. data/fastlane/lib/fastlane/actions/update_plist.rb +80 -0
  270. data/fastlane/lib/fastlane/actions/update_project_code_signing.rb +76 -0
  271. data/fastlane/lib/fastlane/actions/update_project_provisioning.rb +173 -0
  272. data/fastlane/lib/fastlane/actions/update_project_team.rb +95 -0
  273. data/fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb +91 -0
  274. data/fastlane/lib/fastlane/actions/update_url_schemes.rb +123 -0
  275. data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +244 -0
  276. data/fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb +165 -0
  277. data/fastlane/lib/fastlane/actions/upload_to_app_store.rb +65 -0
  278. data/fastlane/lib/fastlane/actions/upload_to_play_store.rb +80 -0
  279. data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +107 -0
  280. data/fastlane/lib/fastlane/actions/validate_play_store_json_key.rb +104 -0
  281. data/fastlane/lib/fastlane/actions/verify_build.rb +199 -0
  282. data/fastlane/lib/fastlane/actions/verify_pod_keys.rb +67 -0
  283. data/fastlane/lib/fastlane/actions/verify_xcode.rb +152 -0
  284. data/fastlane/lib/fastlane/actions/version_bump_podspec.rb +105 -0
  285. data/fastlane/lib/fastlane/actions/version_get_podspec.rb +71 -0
  286. data/fastlane/lib/fastlane/actions/xcode_install.rb +105 -0
  287. data/fastlane/lib/fastlane/actions/xcode_select.rb +63 -0
  288. data/fastlane/lib/fastlane/actions/xcode_server_get_assets.rb +312 -0
  289. data/fastlane/lib/fastlane/actions/xcodebuild.rb +641 -0
  290. data/fastlane/lib/fastlane/actions/xcov.rb +66 -0
  291. data/fastlane/lib/fastlane/actions/xctool.rb +55 -0
  292. data/fastlane/lib/fastlane/actions/xcversion.rb +55 -0
  293. data/fastlane/lib/fastlane/actions/zip.rb +120 -0
  294. data/fastlane/lib/fastlane/auto_complete.rb +82 -0
  295. data/fastlane/lib/fastlane/boolean.rb +5 -0
  296. data/fastlane/lib/fastlane/cli_tools_distributor.rb +185 -0
  297. data/fastlane/lib/fastlane/command_line_handler.rb +49 -0
  298. data/fastlane/lib/fastlane/commands_generator.rb +350 -0
  299. data/fastlane/lib/fastlane/configuration_helper.rb +26 -0
  300. data/fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb +14 -0
  301. data/fastlane/lib/fastlane/documentation/actions_list.rb +214 -0
  302. data/fastlane/lib/fastlane/documentation/docs_generator.rb +89 -0
  303. data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +228 -0
  304. data/fastlane/lib/fastlane/environment_printer.rb +297 -0
  305. data/fastlane/lib/fastlane/erb_template_helper.rb +30 -0
  306. data/fastlane/lib/fastlane/fast_file.rb +351 -0
  307. data/fastlane/lib/fastlane/fastlane_require.rb +75 -0
  308. data/fastlane/lib/fastlane/features.rb +4 -0
  309. data/fastlane/lib/fastlane/helper/README.md +29 -0
  310. data/fastlane/lib/fastlane/helper/adb_helper.rb +52 -0
  311. data/fastlane/lib/fastlane/helper/crashlytics_helper.rb +151 -0
  312. data/fastlane/lib/fastlane/helper/dotenv_helper.rb +50 -0
  313. data/fastlane/lib/fastlane/helper/gem_helper.rb +26 -0
  314. data/fastlane/lib/fastlane/helper/git_helper.rb +135 -0
  315. data/fastlane/lib/fastlane/helper/gradle_helper.rb +62 -0
  316. data/fastlane/lib/fastlane/helper/podspec_helper.rb +75 -0
  317. data/fastlane/lib/fastlane/helper/sh_helper.rb +134 -0
  318. data/fastlane/lib/fastlane/helper/xcodeproj_helper.rb +12 -0
  319. data/fastlane/lib/fastlane/helper/xcversion_helper.rb +25 -0
  320. data/fastlane/lib/fastlane/junit_generator.rb +27 -0
  321. data/fastlane/lib/fastlane/lane.rb +97 -0
  322. data/fastlane/lib/fastlane/lane_list.rb +137 -0
  323. data/fastlane/lib/fastlane/lane_manager.rb +140 -0
  324. data/fastlane/lib/fastlane/lane_manager_base.rb +92 -0
  325. data/fastlane/lib/fastlane/markdown_table_formatter.rb +62 -0
  326. data/fastlane/lib/fastlane/new_action.rb +47 -0
  327. data/fastlane/lib/fastlane/one_off.rb +45 -0
  328. data/fastlane/lib/fastlane/other_action.rb +29 -0
  329. data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +55 -0
  330. data/fastlane/lib/fastlane/plugins/plugin_generator.rb +86 -0
  331. data/fastlane/lib/fastlane/plugins/plugin_generator_ui.rb +19 -0
  332. data/fastlane/lib/fastlane/plugins/plugin_info.rb +49 -0
  333. data/fastlane/lib/fastlane/plugins/plugin_info_collector.rb +159 -0
  334. data/fastlane/lib/fastlane/plugins/plugin_manager.rb +387 -0
  335. data/fastlane/lib/fastlane/plugins/plugin_search.rb +46 -0
  336. data/fastlane/lib/fastlane/plugins/plugin_update_manager.rb +70 -0
  337. data/fastlane/lib/fastlane/plugins/plugins.rb +12 -0
  338. data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +35 -0
  339. data/fastlane/lib/fastlane/plugins/template/.circleci/config.yml +43 -0
  340. data/fastlane/lib/fastlane/plugins/template/.gitignore +12 -0
  341. data/fastlane/lib/fastlane/plugins/template/.rspec +5 -0
  342. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +180 -0
  343. data/fastlane/lib/fastlane/plugins/template/.travis.yml +4 -0
  344. data/fastlane/lib/fastlane/plugins/template/Gemfile +6 -0
  345. data/fastlane/lib/fastlane/plugins/template/LICENSE.erb +21 -0
  346. data/fastlane/lib/fastlane/plugins/template/README.md.erb +52 -0
  347. data/fastlane/lib/fastlane/plugins/template/Rakefile +9 -0
  348. data/fastlane/lib/fastlane/plugins/template/fastlane/Fastfile.erb +3 -0
  349. data/fastlane/lib/fastlane/plugins/template/fastlane/Pluginfile.erb +1 -0
  350. data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb +16 -0
  351. data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb +47 -0
  352. data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/helper/%plugin_name%_helper.rb.erb +16 -0
  353. data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/version.rb.erb +5 -0
  354. data/fastlane/lib/fastlane/plugins/template/spec/%plugin_name%_action_spec.rb.erb +9 -0
  355. data/fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb +15 -0
  356. data/fastlane/lib/fastlane/runner.rb +371 -0
  357. data/fastlane/lib/fastlane/server/action_command.rb +61 -0
  358. data/fastlane/lib/fastlane/server/action_command_return.rb +14 -0
  359. data/fastlane/lib/fastlane/server/command_executor.rb +7 -0
  360. data/fastlane/lib/fastlane/server/command_parser.rb +44 -0
  361. data/fastlane/lib/fastlane/server/control_command.rb +23 -0
  362. data/fastlane/lib/fastlane/server/json_return_value_processor.rb +72 -0
  363. data/fastlane/lib/fastlane/server/socket_server.rb +232 -0
  364. data/fastlane/lib/fastlane/server/socket_server_action_command_executor.rb +101 -0
  365. data/fastlane/lib/fastlane/setup/setup.rb +355 -0
  366. data/fastlane/lib/fastlane/setup/setup_android.rb +97 -0
  367. data/fastlane/lib/fastlane/setup/setup_ios.rb +504 -0
  368. data/fastlane/lib/fastlane/shells.rb +6 -0
  369. data/fastlane/lib/fastlane/supported_platforms.rb +28 -0
  370. data/fastlane/lib/fastlane/swift_fastlane_api_generator.rb +383 -0
  371. data/fastlane/lib/fastlane/swift_fastlane_function.rb +320 -0
  372. data/fastlane/lib/fastlane/swift_lane_manager.rb +304 -0
  373. data/fastlane/lib/fastlane/swift_runner_upgrader.rb +206 -0
  374. data/fastlane/lib/fastlane/tools.rb +33 -0
  375. data/fastlane/lib/fastlane/version.rb +6 -0
  376. data/fastlane/swift/Appfile.swift +17 -0
  377. data/fastlane/swift/ArgumentProcessor.swift +93 -0
  378. data/fastlane/swift/ControlCommand.swift +76 -0
  379. data/fastlane/swift/Deliverfile.swift +21 -0
  380. data/fastlane/swift/DeliverfileProtocol.swift +129 -0
  381. data/fastlane/swift/Fastfile.swift +12 -0
  382. data/fastlane/swift/Fastlane.swift +4396 -0
  383. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +425 -0
  384. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  385. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme +103 -0
  386. data/fastlane/swift/FastlaneSwiftRunner/README.txt +10 -0
  387. data/fastlane/swift/Gymfile.swift +21 -0
  388. data/fastlane/swift/GymfileProtocol.swift +87 -0
  389. data/fastlane/swift/LaneFileProtocol.swift +140 -0
  390. data/fastlane/swift/Matchfile.swift +21 -0
  391. data/fastlane/swift/MatchfileProtocol.swift +61 -0
  392. data/fastlane/swift/Precheckfile.swift +21 -0
  393. data/fastlane/swift/PrecheckfileProtocol.swift +24 -0
  394. data/fastlane/swift/RubyCommand.swift +141 -0
  395. data/fastlane/swift/RubyCommandable.swift +44 -0
  396. data/fastlane/swift/Runner.swift +200 -0
  397. data/fastlane/swift/RunnerArgument.swift +24 -0
  398. data/fastlane/swift/Scanfile.swift +21 -0
  399. data/fastlane/swift/ScanfileProtocol.swift +117 -0
  400. data/fastlane/swift/Screengrabfile.swift +21 -0
  401. data/fastlane/swift/ScreengrabfileProtocol.swift +48 -0
  402. data/fastlane/swift/Snapshotfile.swift +21 -0
  403. data/fastlane/swift/SnapshotfileProtocol.swift +75 -0
  404. data/fastlane/swift/SocketClient.swift +305 -0
  405. data/fastlane/swift/SocketClientDelegateProtocol.swift +25 -0
  406. data/fastlane/swift/SocketResponse.swift +85 -0
  407. data/fastlane/swift/main.swift +52 -0
  408. data/fastlane/swift/upgrade_manifest.json +1 -0
  409. data/fastlane_core/README.md +79 -0
  410. data/fastlane_core/lib/assets/XMLTemplate.xml.erb +12 -0
  411. data/fastlane_core/lib/fastlane_core.rb +46 -0
  412. data/fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb +34 -0
  413. data/fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb +38 -0
  414. data/fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb +23 -0
  415. data/fastlane_core/lib/fastlane_core/analytics/analytics_ingester_client.rb +54 -0
  416. data/fastlane_core/lib/fastlane_core/analytics/analytics_session.rb +71 -0
  417. data/fastlane_core/lib/fastlane_core/analytics/app_identifier_guesser.rb +64 -0
  418. data/fastlane_core/lib/fastlane_core/android_package_name_guesser.rb +79 -0
  419. data/fastlane_core/lib/fastlane_core/build_watcher.rb +80 -0
  420. data/fastlane_core/lib/fastlane_core/cert_checker.rb +116 -0
  421. data/fastlane_core/lib/fastlane_core/command_executor.rb +99 -0
  422. data/fastlane_core/lib/fastlane_core/configuration/commander_generator.rb +103 -0
  423. data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +314 -0
  424. data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +332 -0
  425. data/fastlane_core/lib/fastlane_core/configuration/configuration_file.rb +182 -0
  426. data/fastlane_core/lib/fastlane_core/core_ext/cfpropertylist.rb +23 -0
  427. data/fastlane_core/lib/fastlane_core/core_ext/shellwords.rb +63 -0
  428. data/fastlane_core/lib/fastlane_core/core_ext/string.rb +17 -0
  429. data/fastlane_core/lib/fastlane_core/device_manager.rb +331 -0
  430. data/fastlane_core/lib/fastlane_core/env.rb +9 -0
  431. data/fastlane_core/lib/fastlane_core/fastlane_folder.rb +72 -0
  432. data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +57 -0
  433. data/fastlane_core/lib/fastlane_core/feature/feature.rb +51 -0
  434. data/fastlane_core/lib/fastlane_core/features.rb +4 -0
  435. data/fastlane_core/lib/fastlane_core/globals.rb +27 -0
  436. data/fastlane_core/lib/fastlane_core/helper.rb +414 -0
  437. data/fastlane_core/lib/fastlane_core/ios_app_identifier_guesser.rb +112 -0
  438. data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +63 -0
  439. data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +52 -0
  440. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +520 -0
  441. data/fastlane_core/lib/fastlane_core/keychain_importer.rb +74 -0
  442. data/fastlane_core/lib/fastlane_core/languages.rb +16 -0
  443. data/fastlane_core/lib/fastlane_core/module.rb +31 -0
  444. data/fastlane_core/lib/fastlane_core/pkg_file_analyser.rb +44 -0
  445. data/fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb +48 -0
  446. data/fastlane_core/lib/fastlane_core/print_table.rb +131 -0
  447. data/fastlane_core/lib/fastlane_core/project.rb +481 -0
  448. data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +111 -0
  449. data/fastlane_core/lib/fastlane_core/string_filters.rb +51 -0
  450. data/fastlane_core/lib/fastlane_core/swag.rb +85 -0
  451. data/fastlane_core/lib/fastlane_core/tag_version.rb +31 -0
  452. data/fastlane_core/lib/fastlane_core/test_parser.rb +107 -0
  453. data/fastlane_core/lib/fastlane_core/ui/disable_colors.rb +17 -0
  454. data/fastlane_core/lib/fastlane_core/ui/errors.rb +1 -0
  455. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb +19 -0
  456. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_crash.rb +11 -0
  457. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb +25 -0
  458. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_exception.rb +19 -0
  459. data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb +11 -0
  460. data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +294 -0
  461. data/fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb +62 -0
  462. data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +158 -0
  463. data/fastlane_core/lib/fastlane_core/ui/interface.rb +205 -0
  464. data/fastlane_core/lib/fastlane_core/ui/ui.rb +26 -0
  465. data/fastlane_core/lib/fastlane_core/update_checker/changelog.rb +37 -0
  466. data/fastlane_core/lib/fastlane_core/update_checker/update_checker.rb +109 -0
  467. data/frameit/README.md +17 -0
  468. data/frameit/lib/assets/empty.png +0 -0
  469. data/frameit/lib/frameit.rb +13 -0
  470. data/frameit/lib/frameit/commands_generator.rb +114 -0
  471. data/frameit/lib/frameit/config_parser.rb +114 -0
  472. data/frameit/lib/frameit/dependency_checker.rb +22 -0
  473. data/frameit/lib/frameit/device_types.rb +18 -0
  474. data/frameit/lib/frameit/editor.rb +563 -0
  475. data/frameit/lib/frameit/frame_downloader.rb +85 -0
  476. data/frameit/lib/frameit/mac_editor.rb +35 -0
  477. data/frameit/lib/frameit/module.rb +42 -0
  478. data/frameit/lib/frameit/offsets.rb +21 -0
  479. data/frameit/lib/frameit/options.rb +82 -0
  480. data/frameit/lib/frameit/runner.rb +82 -0
  481. data/frameit/lib/frameit/screenshot.rb +137 -0
  482. data/frameit/lib/frameit/strings_parser.rb +46 -0
  483. data/frameit/lib/frameit/template_finder.rb +42 -0
  484. data/frameit/lib/frameit/trim_box.rb +35 -0
  485. data/gym/README.md +17 -0
  486. data/gym/lib/assets/GymfileTemplate +13 -0
  487. data/gym/lib/assets/GymfileTemplate.swift +13 -0
  488. data/gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh +61 -0
  489. data/gym/lib/gym.rb +9 -0
  490. data/gym/lib/gym/code_signing_mapping.rb +181 -0
  491. data/gym/lib/gym/commands_generator.rb +78 -0
  492. data/gym/lib/gym/detect_values.rb +171 -0
  493. data/gym/lib/gym/error_handler.rb +306 -0
  494. data/gym/lib/gym/generators/README.md +1 -0
  495. data/gym/lib/gym/generators/build_command_generator.rb +143 -0
  496. data/gym/lib/gym/generators/package_command_generator.rb +56 -0
  497. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +193 -0
  498. data/gym/lib/gym/manager.rb +22 -0
  499. data/gym/lib/gym/module.rb +36 -0
  500. data/gym/lib/gym/options.rb +262 -0
  501. data/gym/lib/gym/runner.rb +264 -0
  502. data/gym/lib/gym/xcode.rb +27 -0
  503. data/gym/lib/gym/xcodebuild_fixes/README.md +9 -0
  504. data/gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb +35 -0
  505. data/match/README.md +17 -0
  506. data/match/lib/assets/MatchfileTemplate +11 -0
  507. data/match/lib/assets/MatchfileTemplate.swift +9 -0
  508. data/match/lib/assets/READMETemplate.md +56 -0
  509. data/match/lib/match.rb +13 -0
  510. data/match/lib/match/change_password.rb +70 -0
  511. data/match/lib/match/commands_generator.rb +175 -0
  512. data/match/lib/match/encryption.rb +45 -0
  513. data/match/lib/match/encryption/interface.rb +17 -0
  514. data/match/lib/match/encryption/openssl.rb +161 -0
  515. data/match/lib/match/generator.rb +91 -0
  516. data/match/lib/match/migrate.rb +98 -0
  517. data/match/lib/match/module.rb +27 -0
  518. data/match/lib/match/nuke.rb +260 -0
  519. data/match/lib/match/options.rb +198 -0
  520. data/match/lib/match/runner.rb +333 -0
  521. data/match/lib/match/setup.rb +40 -0
  522. data/match/lib/match/spaceship_ensure.rb +83 -0
  523. data/match/lib/match/storage.rb +42 -0
  524. data/match/lib/match/storage/git_storage.rb +214 -0
  525. data/match/lib/match/storage/google_cloud_storage.rb +265 -0
  526. data/match/lib/match/storage/interface.rb +110 -0
  527. data/match/lib/match/table_printer.rb +51 -0
  528. data/match/lib/match/utils.rb +75 -0
  529. data/pem/README.md +17 -0
  530. data/pem/lib/pem.rb +4 -0
  531. data/pem/lib/pem/commands_generator.rb +46 -0
  532. data/pem/lib/pem/manager.rb +112 -0
  533. data/pem/lib/pem/module.rb +19 -0
  534. data/pem/lib/pem/options.rb +103 -0
  535. data/pilot/README.md +17 -0
  536. data/pilot/lib/pilot.rb +9 -0
  537. data/pilot/lib/pilot/build_manager.rb +453 -0
  538. data/pilot/lib/pilot/commands_generator.rb +174 -0
  539. data/pilot/lib/pilot/features.rb +0 -0
  540. data/pilot/lib/pilot/manager.rb +80 -0
  541. data/pilot/lib/pilot/module.rb +11 -0
  542. data/pilot/lib/pilot/options.rb +266 -0
  543. data/pilot/lib/pilot/tester_exporter.rb +58 -0
  544. data/pilot/lib/pilot/tester_importer.rb +53 -0
  545. data/pilot/lib/pilot/tester_manager.rb +168 -0
  546. data/pilot/lib/pilot/tester_util.rb +0 -0
  547. data/precheck/README.md +17 -0
  548. data/precheck/lib/assets/PrecheckfileTemplate +27 -0
  549. data/precheck/lib/assets/PrecheckfileTemplate.swift +19 -0
  550. data/precheck/lib/precheck.rb +3 -0
  551. data/precheck/lib/precheck/commands_generator.rb +74 -0
  552. data/precheck/lib/precheck/item_to_check.rb +58 -0
  553. data/precheck/lib/precheck/module.rb +21 -0
  554. data/precheck/lib/precheck/options.rb +79 -0
  555. data/precheck/lib/precheck/rule.rb +171 -0
  556. data/precheck/lib/precheck/rule_check_result.rb +19 -0
  557. data/precheck/lib/precheck/rule_processor.rb +231 -0
  558. data/precheck/lib/precheck/rules/abstract_text_match_rule.rb +80 -0
  559. data/precheck/lib/precheck/rules/all.rb +1 -0
  560. data/precheck/lib/precheck/rules/copyright_date_rule.rb +37 -0
  561. data/precheck/lib/precheck/rules/curse_words_rule.rb +62 -0
  562. data/precheck/lib/precheck/rules/custom_text_rule.rb +35 -0
  563. data/precheck/lib/precheck/rules/free_stuff_iap_rule.rb +31 -0
  564. data/precheck/lib/precheck/rules/future_functionality_rule.rb +33 -0
  565. data/precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb +37 -0
  566. data/precheck/lib/precheck/rules/other_platforms_rule.rb +43 -0
  567. data/precheck/lib/precheck/rules/placeholder_words_rule.rb +31 -0
  568. data/precheck/lib/precheck/rules/rules_data/curse_word_hashes/en_us.txt +349 -0
  569. data/precheck/lib/precheck/rules/test_words_rule.rb +30 -0
  570. data/precheck/lib/precheck/rules/unreachable_urls_rule.rb +47 -0
  571. data/precheck/lib/precheck/runner.rb +176 -0
  572. data/produce/README.md +17 -0
  573. data/produce/lib/produce.rb +6 -0
  574. data/produce/lib/produce/available_default_languages.rb +51 -0
  575. data/produce/lib/produce/cloud_container.rb +82 -0
  576. data/produce/lib/produce/commands_generator.rb +235 -0
  577. data/produce/lib/produce/developer_center.rb +134 -0
  578. data/produce/lib/produce/group.rb +90 -0
  579. data/produce/lib/produce/itunes_connect.rb +92 -0
  580. data/produce/lib/produce/manager.rb +15 -0
  581. data/produce/lib/produce/merchant.rb +121 -0
  582. data/produce/lib/produce/module.rb +14 -0
  583. data/produce/lib/produce/options.rb +172 -0
  584. data/produce/lib/produce/service.rb +313 -0
  585. data/scan/README.md +17 -0
  586. data/scan/lib/assets/ScanfileTemplate +16 -0
  587. data/scan/lib/assets/ScanfileTemplate.swift +13 -0
  588. data/scan/lib/scan.rb +10 -0
  589. data/scan/lib/scan/commands_generator.rb +78 -0
  590. data/scan/lib/scan/detect_values.rb +219 -0
  591. data/scan/lib/scan/error_handler.rb +52 -0
  592. data/scan/lib/scan/manager.rb +21 -0
  593. data/scan/lib/scan/module.rb +32 -0
  594. data/scan/lib/scan/options.rb +390 -0
  595. data/scan/lib/scan/runner.rb +173 -0
  596. data/scan/lib/scan/slack_poster.rb +60 -0
  597. data/scan/lib/scan/test_command_generator.rb +160 -0
  598. data/scan/lib/scan/test_result_parser.rb +26 -0
  599. data/scan/lib/scan/xcpretty_reporter_options_generator.rb +85 -0
  600. data/screengrab/README.md +17 -0
  601. data/screengrab/lib/assets/ScreengrabfileTemplate +15 -0
  602. data/screengrab/lib/assets/ScreengrabfileTemplate.swift +15 -0
  603. data/screengrab/lib/screengrab.rb +7 -0
  604. data/screengrab/lib/screengrab/android_environment.rb +91 -0
  605. data/screengrab/lib/screengrab/commands_generator.rb +70 -0
  606. data/screengrab/lib/screengrab/dependency_checker.rb +58 -0
  607. data/screengrab/lib/screengrab/detect_values.rb +16 -0
  608. data/screengrab/lib/screengrab/module.rb +24 -0
  609. data/screengrab/lib/screengrab/options.rb +135 -0
  610. data/screengrab/lib/screengrab/page.html.erb +190 -0
  611. data/screengrab/lib/screengrab/reports_generator.rb +36 -0
  612. data/screengrab/lib/screengrab/runner.rb +379 -0
  613. data/screengrab/lib/screengrab/setup.rb +24 -0
  614. data/sigh/README.md +17 -0
  615. data/sigh/lib/assets/resign.sh +888 -0
  616. data/sigh/lib/sigh.rb +4 -0
  617. data/sigh/lib/sigh/commands_generator.rb +153 -0
  618. data/sigh/lib/sigh/download_all.rb +45 -0
  619. data/sigh/lib/sigh/local_manage.rb +145 -0
  620. data/sigh/lib/sigh/manager.rb +47 -0
  621. data/sigh/lib/sigh/module.rb +16 -0
  622. data/sigh/lib/sigh/options.rb +160 -0
  623. data/sigh/lib/sigh/repair.rb +34 -0
  624. data/sigh/lib/sigh/resign.rb +220 -0
  625. data/sigh/lib/sigh/runner.rb +285 -0
  626. data/snapshot/README.md +17 -0
  627. data/snapshot/lib/assets/SnapfileTemplate +34 -0
  628. data/snapshot/lib/assets/SnapfileTemplate.swift +41 -0
  629. data/snapshot/lib/assets/SnapshotHelper.swift +303 -0
  630. data/snapshot/lib/assets/SnapshotHelperXcode8.swift +172 -0
  631. data/snapshot/lib/snapshot.rb +19 -0
  632. data/snapshot/lib/snapshot/collector.rb +140 -0
  633. data/snapshot/lib/snapshot/commands_generator.rb +115 -0
  634. data/snapshot/lib/snapshot/dependency_checker.rb +69 -0
  635. data/snapshot/lib/snapshot/detect_values.rb +71 -0
  636. data/snapshot/lib/snapshot/error_handler.rb +24 -0
  637. data/snapshot/lib/snapshot/fixes/README.md +5 -0
  638. data/snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb +27 -0
  639. data/snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb +27 -0
  640. data/snapshot/lib/snapshot/latest_os_version.rb +34 -0
  641. data/snapshot/lib/snapshot/module.rb +44 -0
  642. data/snapshot/lib/snapshot/options.rb +223 -0
  643. data/snapshot/lib/snapshot/page.html.erb +285 -0
  644. data/snapshot/lib/snapshot/reports_generator.rb +125 -0
  645. data/snapshot/lib/snapshot/reset_simulators.rb +122 -0
  646. data/snapshot/lib/snapshot/runner.rb +146 -0
  647. data/snapshot/lib/snapshot/screenshot_flatten.rb +20 -0
  648. data/snapshot/lib/snapshot/screenshot_rotate.rb +36 -0
  649. data/snapshot/lib/snapshot/setup.rb +58 -0
  650. data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +54 -0
  651. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +215 -0
  652. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +143 -0
  653. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_xcode_8.rb +113 -0
  654. data/snapshot/lib/snapshot/test_command_generator.rb +102 -0
  655. data/snapshot/lib/snapshot/test_command_generator_base.rb +117 -0
  656. data/snapshot/lib/snapshot/test_command_generator_xcode_8.rb +67 -0
  657. data/snapshot/lib/snapshot/update.rb +36 -0
  658. data/spaceship/README.md +183 -0
  659. data/spaceship/lib/assets/displayFamilies.json +181 -0
  660. data/spaceship/lib/assets/languageMapping.json +306 -0
  661. data/spaceship/lib/assets/languageMappingReadable.json +30 -0
  662. data/spaceship/lib/spaceship.rb +26 -0
  663. data/spaceship/lib/spaceship/babosa_fix.rb +30 -0
  664. data/spaceship/lib/spaceship/base.rb +310 -0
  665. data/spaceship/lib/spaceship/client.rb +892 -0
  666. data/spaceship/lib/spaceship/commands_generator.rb +52 -0
  667. data/spaceship/lib/spaceship/connect_api.rb +47 -0
  668. data/spaceship/lib/spaceship/connect_api/client.rb +178 -0
  669. data/spaceship/lib/spaceship/connect_api/model.rb +152 -0
  670. data/spaceship/lib/spaceship/connect_api/models/app.rb +97 -0
  671. data/spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb +28 -0
  672. data/spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb +32 -0
  673. data/spaceship/lib/spaceship/connect_api/models/beta_app_review_submission.rb +26 -0
  674. data/spaceship/lib/spaceship/connect_api/models/beta_build_localization.rb +20 -0
  675. data/spaceship/lib/spaceship/connect_api/models/beta_build_metric.rb +24 -0
  676. data/spaceship/lib/spaceship/connect_api/models/beta_group.rb +41 -0
  677. data/spaceship/lib/spaceship/connect_api/models/beta_tester.rb +56 -0
  678. data/spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb +43 -0
  679. data/spaceship/lib/spaceship/connect_api/models/build.rb +144 -0
  680. data/spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb +56 -0
  681. data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +36 -0
  682. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +46 -0
  683. data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +37 -0
  684. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +48 -0
  685. data/spaceship/lib/spaceship/connect_api/models/device.rb +53 -0
  686. data/spaceship/lib/spaceship/connect_api/models/pre_release_version.rb +20 -0
  687. data/spaceship/lib/spaceship/connect_api/models/profile.rb +60 -0
  688. data/spaceship/lib/spaceship/connect_api/models/user.rb +50 -0
  689. data/spaceship/lib/spaceship/connect_api/provisioning/client.rb +59 -0
  690. data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +48 -0
  691. data/spaceship/lib/spaceship/connect_api/response.rb +67 -0
  692. data/spaceship/lib/spaceship/connect_api/testflight/client.rb +33 -0
  693. data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +322 -0
  694. data/spaceship/lib/spaceship/connect_api/token.rb +56 -0
  695. data/spaceship/lib/spaceship/connect_api/users/client.rb +33 -0
  696. data/spaceship/lib/spaceship/connect_api/users/users.rb +16 -0
  697. data/spaceship/lib/spaceship/du/du_client.rb +134 -0
  698. data/spaceship/lib/spaceship/du/upload_file.rb +58 -0
  699. data/spaceship/lib/spaceship/du/utilities.rb +99 -0
  700. data/spaceship/lib/spaceship/errors.rb +79 -0
  701. data/spaceship/lib/spaceship/globals.rb +12 -0
  702. data/spaceship/lib/spaceship/helper/net_http_generic_request.rb +14 -0
  703. data/spaceship/lib/spaceship/helper/plist_middleware.rb +16 -0
  704. data/spaceship/lib/spaceship/helper/rels_middleware.rb +28 -0
  705. data/spaceship/lib/spaceship/launcher.rb +99 -0
  706. data/spaceship/lib/spaceship/module.rb +8 -0
  707. data/spaceship/lib/spaceship/playground.rb +75 -0
  708. data/spaceship/lib/spaceship/portal/app.rb +192 -0
  709. data/spaceship/lib/spaceship/portal/app_group.rb +73 -0
  710. data/spaceship/lib/spaceship/portal/app_service.rb +87 -0
  711. data/spaceship/lib/spaceship/portal/certificate.rb +351 -0
  712. data/spaceship/lib/spaceship/portal/cloud_container.rb +74 -0
  713. data/spaceship/lib/spaceship/portal/device.rb +191 -0
  714. data/spaceship/lib/spaceship/portal/invite.rb +53 -0
  715. data/spaceship/lib/spaceship/portal/key.rb +101 -0
  716. data/spaceship/lib/spaceship/portal/legacy_wrapper.rb +21 -0
  717. data/spaceship/lib/spaceship/portal/merchant.rb +86 -0
  718. data/spaceship/lib/spaceship/portal/passbook.rb +78 -0
  719. data/spaceship/lib/spaceship/portal/person.rb +62 -0
  720. data/spaceship/lib/spaceship/portal/persons.rb +67 -0
  721. data/spaceship/lib/spaceship/portal/portal.rb +17 -0
  722. data/spaceship/lib/spaceship/portal/portal_base.rb +16 -0
  723. data/spaceship/lib/spaceship/portal/portal_client.rb +848 -0
  724. data/spaceship/lib/spaceship/portal/provisioning_profile.rb +559 -0
  725. data/spaceship/lib/spaceship/portal/provisioning_profile_template.rb +52 -0
  726. data/spaceship/lib/spaceship/portal/spaceship.rb +154 -0
  727. data/spaceship/lib/spaceship/portal/ui/select_team.rb +116 -0
  728. data/spaceship/lib/spaceship/portal/website_push.rb +88 -0
  729. data/spaceship/lib/spaceship/provider.rb +13 -0
  730. data/spaceship/lib/spaceship/spaceauth_runner.rb +74 -0
  731. data/spaceship/lib/spaceship/test_flight.rb +10 -0
  732. data/spaceship/lib/spaceship/test_flight/app_test_info.rb +40 -0
  733. data/spaceship/lib/spaceship/test_flight/base.rb +39 -0
  734. data/spaceship/lib/spaceship/test_flight/beta_review_info.rb +19 -0
  735. data/spaceship/lib/spaceship/test_flight/build.rb +239 -0
  736. data/spaceship/lib/spaceship/test_flight/build_trains.rb +46 -0
  737. data/spaceship/lib/spaceship/test_flight/client.rb +361 -0
  738. data/spaceship/lib/spaceship/test_flight/export_compliance.rb +12 -0
  739. data/spaceship/lib/spaceship/test_flight/group.rb +131 -0
  740. data/spaceship/lib/spaceship/test_flight/test_info.rb +56 -0
  741. data/spaceship/lib/spaceship/test_flight/tester.rb +136 -0
  742. data/spaceship/lib/spaceship/tunes/app_analytics.rb +168 -0
  743. data/spaceship/lib/spaceship/tunes/app_details.rb +147 -0
  744. data/spaceship/lib/spaceship/tunes/app_image.rb +51 -0
  745. data/spaceship/lib/spaceship/tunes/app_ratings.rb +58 -0
  746. data/spaceship/lib/spaceship/tunes/app_review.rb +55 -0
  747. data/spaceship/lib/spaceship/tunes/app_review_attachment.rb +49 -0
  748. data/spaceship/lib/spaceship/tunes/app_screenshot.rb +12 -0
  749. data/spaceship/lib/spaceship/tunes/app_status.rb +63 -0
  750. data/spaceship/lib/spaceship/tunes/app_submission.rb +161 -0
  751. data/spaceship/lib/spaceship/tunes/app_trailer.rb +64 -0
  752. data/spaceship/lib/spaceship/tunes/app_version.rb +961 -0
  753. data/spaceship/lib/spaceship/tunes/app_version_common.rb +35 -0
  754. data/spaceship/lib/spaceship/tunes/app_version_generated_promocodes.rb +28 -0
  755. data/spaceship/lib/spaceship/tunes/app_version_history.rb +52 -0
  756. data/spaceship/lib/spaceship/tunes/app_version_promocodes.rb +27 -0
  757. data/spaceship/lib/spaceship/tunes/app_version_ref.rb +15 -0
  758. data/spaceship/lib/spaceship/tunes/app_version_states_history.rb +27 -0
  759. data/spaceship/lib/spaceship/tunes/application.rb +448 -0
  760. data/spaceship/lib/spaceship/tunes/availability.rb +132 -0
  761. data/spaceship/lib/spaceship/tunes/b2b_user.rb +30 -0
  762. data/spaceship/lib/spaceship/tunes/build.rb +263 -0
  763. data/spaceship/lib/spaceship/tunes/build_details.rb +42 -0
  764. data/spaceship/lib/spaceship/tunes/build_train.rb +181 -0
  765. data/spaceship/lib/spaceship/tunes/developer_response.rb +23 -0
  766. data/spaceship/lib/spaceship/tunes/device_type.rb +17 -0
  767. data/spaceship/lib/spaceship/tunes/display_family.rb +84 -0
  768. data/spaceship/lib/spaceship/tunes/errors.rb +17 -0
  769. data/spaceship/lib/spaceship/tunes/iap.rb +151 -0
  770. data/spaceship/lib/spaceship/tunes/iap_detail.rb +243 -0
  771. data/spaceship/lib/spaceship/tunes/iap_families.rb +57 -0
  772. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +73 -0
  773. data/spaceship/lib/spaceship/tunes/iap_family_list.rb +28 -0
  774. data/spaceship/lib/spaceship/tunes/iap_list.rb +76 -0
  775. data/spaceship/lib/spaceship/tunes/iap_status.rb +52 -0
  776. data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_info.rb +46 -0
  777. data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_tier.rb +25 -0
  778. data/spaceship/lib/spaceship/tunes/iap_type.rb +45 -0
  779. data/spaceship/lib/spaceship/tunes/language_converter.rb +65 -0
  780. data/spaceship/lib/spaceship/tunes/language_item.rb +61 -0
  781. data/spaceship/lib/spaceship/tunes/legacy_wrapper.rb +13 -0
  782. data/spaceship/lib/spaceship/tunes/member.rb +84 -0
  783. data/spaceship/lib/spaceship/tunes/members.rb +35 -0
  784. data/spaceship/lib/spaceship/tunes/pricing_info.rb +42 -0
  785. data/spaceship/lib/spaceship/tunes/pricing_tier.rb +25 -0
  786. data/spaceship/lib/spaceship/tunes/sandbox_tester.rb +74 -0
  787. data/spaceship/lib/spaceship/tunes/spaceship.rb +39 -0
  788. data/spaceship/lib/spaceship/tunes/territory.rb +39 -0
  789. data/spaceship/lib/spaceship/tunes/transit_app_file.rb +23 -0
  790. data/spaceship/lib/spaceship/tunes/tunes.rb +35 -0
  791. data/spaceship/lib/spaceship/tunes/tunes_base.rb +17 -0
  792. data/spaceship/lib/spaceship/tunes/tunes_client.rb +1572 -0
  793. data/spaceship/lib/spaceship/tunes/user_detail.rb +15 -0
  794. data/spaceship/lib/spaceship/tunes/version_set.rb +26 -0
  795. data/spaceship/lib/spaceship/two_step_or_factor_client.rb +287 -0
  796. data/spaceship/lib/spaceship/ui.rb +27 -0
  797. data/supply/README.md +17 -0
  798. data/supply/lib/supply.rb +30 -0
  799. data/supply/lib/supply/apk_listing.rb +14 -0
  800. data/supply/lib/supply/client.rb +458 -0
  801. data/supply/lib/supply/commands_generator.rb +66 -0
  802. data/supply/lib/supply/languages.rb +88 -0
  803. data/supply/lib/supply/listing.rb +32 -0
  804. data/supply/lib/supply/options.rb +266 -0
  805. data/supply/lib/supply/reader.rb +25 -0
  806. data/supply/lib/supply/setup.rb +112 -0
  807. data/supply/lib/supply/uploader.rb +349 -0
  808. metadata +1772 -0
metadata ADDED
@@ -0,0 +1,1772 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane_iac_publish
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Matthew Ellis
8
+ - Helmut Januschka
9
+ - Jérôme Lacoste
10
+ - Felix Krause
11
+ - Jorge Revuelta H
12
+ - Kohki Miki
13
+ - Iulian Onofrei
14
+ - Olivier Halligon
15
+ - Stefan Natchev
16
+ - Joshua Liebowitz
17
+ - Andrew McBurney
18
+ - Maksym Grebenets
19
+ - Danielle Tomlinson
20
+ - Manu Wallner
21
+ - Fumiya Nakamura
22
+ - Jan Piotrowski
23
+ - Jimmy Dee
24
+ - Josh Holtz
25
+ - Aaron Brager
26
+ - Luka Mirosevic
27
+ autorequire:
28
+ bindir: bin
29
+ cert_chain: []
30
+ date: 2019-07-04 00:00:00.000000000 Z
31
+ dependencies:
32
+ - !ruby/object:Gem::Dependency
33
+ name: slack-notifier
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 2.0.0
39
+ - - "<"
40
+ - !ruby/object:Gem::Version
41
+ version: 3.0.0
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: 2.0.0
49
+ - - "<"
50
+ - !ruby/object:Gem::Version
51
+ version: 3.0.0
52
+ - !ruby/object:Gem::Dependency
53
+ name: xcodeproj
54
+ requirement: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: 1.8.1
59
+ - - "<"
60
+ - !ruby/object:Gem::Version
61
+ version: 2.0.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 1.8.1
69
+ - - "<"
70
+ - !ruby/object:Gem::Version
71
+ version: 2.0.0
72
+ - !ruby/object:Gem::Dependency
73
+ name: xcpretty
74
+ requirement: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - "~>"
77
+ - !ruby/object:Gem::Version
78
+ version: 0.3.0
79
+ type: :runtime
80
+ prerelease: false
81
+ version_requirements: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - "~>"
84
+ - !ruby/object:Gem::Version
85
+ version: 0.3.0
86
+ - !ruby/object:Gem::Dependency
87
+ name: terminal-notifier
88
+ requirement: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 2.0.0
93
+ - - "<"
94
+ - !ruby/object:Gem::Version
95
+ version: 3.0.0
96
+ type: :runtime
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 2.0.0
103
+ - - "<"
104
+ - !ruby/object:Gem::Version
105
+ version: 3.0.0
106
+ - !ruby/object:Gem::Dependency
107
+ name: terminal-table
108
+ requirement: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 1.4.5
113
+ - - "<"
114
+ - !ruby/object:Gem::Version
115
+ version: 2.0.0
116
+ type: :runtime
117
+ prerelease: false
118
+ version_requirements: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: 1.4.5
123
+ - - "<"
124
+ - !ruby/object:Gem::Version
125
+ version: 2.0.0
126
+ - !ruby/object:Gem::Dependency
127
+ name: plist
128
+ requirement: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: 3.1.0
133
+ - - "<"
134
+ - !ruby/object:Gem::Version
135
+ version: 4.0.0
136
+ type: :runtime
137
+ prerelease: false
138
+ version_requirements: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: 3.1.0
143
+ - - "<"
144
+ - !ruby/object:Gem::Version
145
+ version: 4.0.0
146
+ - !ruby/object:Gem::Dependency
147
+ name: CFPropertyList
148
+ requirement: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '2.3'
153
+ - - "<"
154
+ - !ruby/object:Gem::Version
155
+ version: 4.0.0
156
+ type: :runtime
157
+ prerelease: false
158
+ version_requirements: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: '2.3'
163
+ - - "<"
164
+ - !ruby/object:Gem::Version
165
+ version: 4.0.0
166
+ - !ruby/object:Gem::Dependency
167
+ name: addressable
168
+ requirement: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '2.3'
173
+ - - "<"
174
+ - !ruby/object:Gem::Version
175
+ version: 3.0.0
176
+ type: :runtime
177
+ prerelease: false
178
+ version_requirements: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: '2.3'
183
+ - - "<"
184
+ - !ruby/object:Gem::Version
185
+ version: 3.0.0
186
+ - !ruby/object:Gem::Dependency
187
+ name: multipart-post
188
+ requirement: !ruby/object:Gem::Requirement
189
+ requirements:
190
+ - - "~>"
191
+ - !ruby/object:Gem::Version
192
+ version: 2.0.0
193
+ type: :runtime
194
+ prerelease: false
195
+ version_requirements: !ruby/object:Gem::Requirement
196
+ requirements:
197
+ - - "~>"
198
+ - !ruby/object:Gem::Version
199
+ version: 2.0.0
200
+ - !ruby/object:Gem::Dependency
201
+ name: word_wrap
202
+ requirement: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - "~>"
205
+ - !ruby/object:Gem::Version
206
+ version: 1.0.0
207
+ type: :runtime
208
+ prerelease: false
209
+ version_requirements: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - "~>"
212
+ - !ruby/object:Gem::Version
213
+ version: 1.0.0
214
+ - !ruby/object:Gem::Dependency
215
+ name: public_suffix
216
+ requirement: !ruby/object:Gem::Requirement
217
+ requirements:
218
+ - - "~>"
219
+ - !ruby/object:Gem::Version
220
+ version: 2.0.0
221
+ type: :runtime
222
+ prerelease: false
223
+ version_requirements: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - "~>"
226
+ - !ruby/object:Gem::Version
227
+ version: 2.0.0
228
+ - !ruby/object:Gem::Dependency
229
+ name: tty-screen
230
+ requirement: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: 0.6.3
235
+ - - "<"
236
+ - !ruby/object:Gem::Version
237
+ version: 1.0.0
238
+ type: :runtime
239
+ prerelease: false
240
+ version_requirements: !ruby/object:Gem::Requirement
241
+ requirements:
242
+ - - ">="
243
+ - !ruby/object:Gem::Version
244
+ version: 0.6.3
245
+ - - "<"
246
+ - !ruby/object:Gem::Version
247
+ version: 1.0.0
248
+ - !ruby/object:Gem::Dependency
249
+ name: tty-spinner
250
+ requirement: !ruby/object:Gem::Requirement
251
+ requirements:
252
+ - - ">="
253
+ - !ruby/object:Gem::Version
254
+ version: 0.8.0
255
+ - - "<"
256
+ - !ruby/object:Gem::Version
257
+ version: 1.0.0
258
+ type: :runtime
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: 0.8.0
265
+ - - "<"
266
+ - !ruby/object:Gem::Version
267
+ version: 1.0.0
268
+ - !ruby/object:Gem::Dependency
269
+ name: babosa
270
+ requirement: !ruby/object:Gem::Requirement
271
+ requirements:
272
+ - - ">="
273
+ - !ruby/object:Gem::Version
274
+ version: 1.0.2
275
+ - - "<"
276
+ - !ruby/object:Gem::Version
277
+ version: 2.0.0
278
+ type: :runtime
279
+ prerelease: false
280
+ version_requirements: !ruby/object:Gem::Requirement
281
+ requirements:
282
+ - - ">="
283
+ - !ruby/object:Gem::Version
284
+ version: 1.0.2
285
+ - - "<"
286
+ - !ruby/object:Gem::Version
287
+ version: 2.0.0
288
+ - !ruby/object:Gem::Dependency
289
+ name: colored
290
+ requirement: !ruby/object:Gem::Requirement
291
+ requirements:
292
+ - - ">="
293
+ - !ruby/object:Gem::Version
294
+ version: '0'
295
+ type: :runtime
296
+ prerelease: false
297
+ version_requirements: !ruby/object:Gem::Requirement
298
+ requirements:
299
+ - - ">="
300
+ - !ruby/object:Gem::Version
301
+ version: '0'
302
+ - !ruby/object:Gem::Dependency
303
+ name: commander-fastlane
304
+ requirement: !ruby/object:Gem::Requirement
305
+ requirements:
306
+ - - ">="
307
+ - !ruby/object:Gem::Version
308
+ version: 4.4.6
309
+ - - "<"
310
+ - !ruby/object:Gem::Version
311
+ version: 5.0.0
312
+ type: :runtime
313
+ prerelease: false
314
+ version_requirements: !ruby/object:Gem::Requirement
315
+ requirements:
316
+ - - ">="
317
+ - !ruby/object:Gem::Version
318
+ version: 4.4.6
319
+ - - "<"
320
+ - !ruby/object:Gem::Version
321
+ version: 5.0.0
322
+ - !ruby/object:Gem::Dependency
323
+ name: excon
324
+ requirement: !ruby/object:Gem::Requirement
325
+ requirements:
326
+ - - ">="
327
+ - !ruby/object:Gem::Version
328
+ version: 0.45.0
329
+ - - "<"
330
+ - !ruby/object:Gem::Version
331
+ version: 1.0.0
332
+ type: :runtime
333
+ prerelease: false
334
+ version_requirements: !ruby/object:Gem::Requirement
335
+ requirements:
336
+ - - ">="
337
+ - !ruby/object:Gem::Version
338
+ version: 0.45.0
339
+ - - "<"
340
+ - !ruby/object:Gem::Version
341
+ version: 1.0.0
342
+ - !ruby/object:Gem::Dependency
343
+ name: faraday-cookie_jar
344
+ requirement: !ruby/object:Gem::Requirement
345
+ requirements:
346
+ - - "~>"
347
+ - !ruby/object:Gem::Version
348
+ version: 0.0.6
349
+ type: :runtime
350
+ prerelease: false
351
+ version_requirements: !ruby/object:Gem::Requirement
352
+ requirements:
353
+ - - "~>"
354
+ - !ruby/object:Gem::Version
355
+ version: 0.0.6
356
+ - !ruby/object:Gem::Dependency
357
+ name: fastimage
358
+ requirement: !ruby/object:Gem::Requirement
359
+ requirements:
360
+ - - ">="
361
+ - !ruby/object:Gem::Version
362
+ version: 2.1.0
363
+ - - "<"
364
+ - !ruby/object:Gem::Version
365
+ version: 3.0.0
366
+ type: :runtime
367
+ prerelease: false
368
+ version_requirements: !ruby/object:Gem::Requirement
369
+ requirements:
370
+ - - ">="
371
+ - !ruby/object:Gem::Version
372
+ version: 2.1.0
373
+ - - "<"
374
+ - !ruby/object:Gem::Version
375
+ version: 3.0.0
376
+ - !ruby/object:Gem::Dependency
377
+ name: gh_inspector
378
+ requirement: !ruby/object:Gem::Requirement
379
+ requirements:
380
+ - - ">="
381
+ - !ruby/object:Gem::Version
382
+ version: 1.1.2
383
+ - - "<"
384
+ - !ruby/object:Gem::Version
385
+ version: 2.0.0
386
+ type: :runtime
387
+ prerelease: false
388
+ version_requirements: !ruby/object:Gem::Requirement
389
+ requirements:
390
+ - - ">="
391
+ - !ruby/object:Gem::Version
392
+ version: 1.1.2
393
+ - - "<"
394
+ - !ruby/object:Gem::Version
395
+ version: 2.0.0
396
+ - !ruby/object:Gem::Dependency
397
+ name: highline
398
+ requirement: !ruby/object:Gem::Requirement
399
+ requirements:
400
+ - - ">="
401
+ - !ruby/object:Gem::Version
402
+ version: 1.7.2
403
+ - - "<"
404
+ - !ruby/object:Gem::Version
405
+ version: 2.0.0
406
+ type: :runtime
407
+ prerelease: false
408
+ version_requirements: !ruby/object:Gem::Requirement
409
+ requirements:
410
+ - - ">="
411
+ - !ruby/object:Gem::Version
412
+ version: 1.7.2
413
+ - - "<"
414
+ - !ruby/object:Gem::Version
415
+ version: 2.0.0
416
+ - !ruby/object:Gem::Dependency
417
+ name: json
418
+ requirement: !ruby/object:Gem::Requirement
419
+ requirements:
420
+ - - "<"
421
+ - !ruby/object:Gem::Version
422
+ version: 3.0.0
423
+ type: :runtime
424
+ prerelease: false
425
+ version_requirements: !ruby/object:Gem::Requirement
426
+ requirements:
427
+ - - "<"
428
+ - !ruby/object:Gem::Version
429
+ version: 3.0.0
430
+ - !ruby/object:Gem::Dependency
431
+ name: mini_magick
432
+ requirement: !ruby/object:Gem::Requirement
433
+ requirements:
434
+ - - "~>"
435
+ - !ruby/object:Gem::Version
436
+ version: 4.5.1
437
+ type: :runtime
438
+ prerelease: false
439
+ version_requirements: !ruby/object:Gem::Requirement
440
+ requirements:
441
+ - - "~>"
442
+ - !ruby/object:Gem::Version
443
+ version: 4.5.1
444
+ - !ruby/object:Gem::Dependency
445
+ name: multi_xml
446
+ requirement: !ruby/object:Gem::Requirement
447
+ requirements:
448
+ - - "~>"
449
+ - !ruby/object:Gem::Version
450
+ version: '0.5'
451
+ type: :runtime
452
+ prerelease: false
453
+ version_requirements: !ruby/object:Gem::Requirement
454
+ requirements:
455
+ - - "~>"
456
+ - !ruby/object:Gem::Version
457
+ version: '0.5'
458
+ - !ruby/object:Gem::Dependency
459
+ name: rubyzip
460
+ requirement: !ruby/object:Gem::Requirement
461
+ requirements:
462
+ - - ">="
463
+ - !ruby/object:Gem::Version
464
+ version: 1.2.2
465
+ - - "<"
466
+ - !ruby/object:Gem::Version
467
+ version: 2.0.0
468
+ type: :runtime
469
+ prerelease: false
470
+ version_requirements: !ruby/object:Gem::Requirement
471
+ requirements:
472
+ - - ">="
473
+ - !ruby/object:Gem::Version
474
+ version: 1.2.2
475
+ - - "<"
476
+ - !ruby/object:Gem::Version
477
+ version: 2.0.0
478
+ - !ruby/object:Gem::Dependency
479
+ name: security
480
+ requirement: !ruby/object:Gem::Requirement
481
+ requirements:
482
+ - - '='
483
+ - !ruby/object:Gem::Version
484
+ version: 0.1.3
485
+ type: :runtime
486
+ prerelease: false
487
+ version_requirements: !ruby/object:Gem::Requirement
488
+ requirements:
489
+ - - '='
490
+ - !ruby/object:Gem::Version
491
+ version: 0.1.3
492
+ - !ruby/object:Gem::Dependency
493
+ name: xcpretty-travis-formatter
494
+ requirement: !ruby/object:Gem::Requirement
495
+ requirements:
496
+ - - ">="
497
+ - !ruby/object:Gem::Version
498
+ version: 0.0.3
499
+ type: :runtime
500
+ prerelease: false
501
+ version_requirements: !ruby/object:Gem::Requirement
502
+ requirements:
503
+ - - ">="
504
+ - !ruby/object:Gem::Version
505
+ version: 0.0.3
506
+ - !ruby/object:Gem::Dependency
507
+ name: dotenv
508
+ requirement: !ruby/object:Gem::Requirement
509
+ requirements:
510
+ - - ">="
511
+ - !ruby/object:Gem::Version
512
+ version: 2.1.1
513
+ - - "<"
514
+ - !ruby/object:Gem::Version
515
+ version: 3.0.0
516
+ type: :runtime
517
+ prerelease: false
518
+ version_requirements: !ruby/object:Gem::Requirement
519
+ requirements:
520
+ - - ">="
521
+ - !ruby/object:Gem::Version
522
+ version: 2.1.1
523
+ - - "<"
524
+ - !ruby/object:Gem::Version
525
+ version: 3.0.0
526
+ - !ruby/object:Gem::Dependency
527
+ name: bundler
528
+ requirement: !ruby/object:Gem::Requirement
529
+ requirements:
530
+ - - ">="
531
+ - !ruby/object:Gem::Version
532
+ version: 1.12.0
533
+ - - "<"
534
+ - !ruby/object:Gem::Version
535
+ version: 3.0.0
536
+ type: :runtime
537
+ prerelease: false
538
+ version_requirements: !ruby/object:Gem::Requirement
539
+ requirements:
540
+ - - ">="
541
+ - !ruby/object:Gem::Version
542
+ version: 1.12.0
543
+ - - "<"
544
+ - !ruby/object:Gem::Version
545
+ version: 3.0.0
546
+ - !ruby/object:Gem::Dependency
547
+ name: faraday
548
+ requirement: !ruby/object:Gem::Requirement
549
+ requirements:
550
+ - - "~>"
551
+ - !ruby/object:Gem::Version
552
+ version: '0.9'
553
+ type: :runtime
554
+ prerelease: false
555
+ version_requirements: !ruby/object:Gem::Requirement
556
+ requirements:
557
+ - - "~>"
558
+ - !ruby/object:Gem::Version
559
+ version: '0.9'
560
+ - !ruby/object:Gem::Dependency
561
+ name: faraday_middleware
562
+ requirement: !ruby/object:Gem::Requirement
563
+ requirements:
564
+ - - "~>"
565
+ - !ruby/object:Gem::Version
566
+ version: '0.9'
567
+ type: :runtime
568
+ prerelease: false
569
+ version_requirements: !ruby/object:Gem::Requirement
570
+ requirements:
571
+ - - "~>"
572
+ - !ruby/object:Gem::Version
573
+ version: '0.9'
574
+ - !ruby/object:Gem::Dependency
575
+ name: simctl
576
+ requirement: !ruby/object:Gem::Requirement
577
+ requirements:
578
+ - - "~>"
579
+ - !ruby/object:Gem::Version
580
+ version: 1.6.3
581
+ type: :runtime
582
+ prerelease: false
583
+ version_requirements: !ruby/object:Gem::Requirement
584
+ requirements:
585
+ - - "~>"
586
+ - !ruby/object:Gem::Version
587
+ version: 1.6.3
588
+ - !ruby/object:Gem::Dependency
589
+ name: jwt
590
+ requirement: !ruby/object:Gem::Requirement
591
+ requirements:
592
+ - - "~>"
593
+ - !ruby/object:Gem::Version
594
+ version: 2.1.0
595
+ type: :runtime
596
+ prerelease: false
597
+ version_requirements: !ruby/object:Gem::Requirement
598
+ requirements:
599
+ - - "~>"
600
+ - !ruby/object:Gem::Version
601
+ version: 2.1.0
602
+ - !ruby/object:Gem::Dependency
603
+ name: google-api-client
604
+ requirement: !ruby/object:Gem::Requirement
605
+ requirements:
606
+ - - ">="
607
+ - !ruby/object:Gem::Version
608
+ version: 0.21.2
609
+ - - "<"
610
+ - !ruby/object:Gem::Version
611
+ version: 0.24.0
612
+ type: :runtime
613
+ prerelease: false
614
+ version_requirements: !ruby/object:Gem::Requirement
615
+ requirements:
616
+ - - ">="
617
+ - !ruby/object:Gem::Version
618
+ version: 0.21.2
619
+ - - "<"
620
+ - !ruby/object:Gem::Version
621
+ version: 0.24.0
622
+ - !ruby/object:Gem::Dependency
623
+ name: google-cloud-storage
624
+ requirement: !ruby/object:Gem::Requirement
625
+ requirements:
626
+ - - ">="
627
+ - !ruby/object:Gem::Version
628
+ version: 1.15.0
629
+ - - "<"
630
+ - !ruby/object:Gem::Version
631
+ version: 2.0.0
632
+ type: :runtime
633
+ prerelease: false
634
+ version_requirements: !ruby/object:Gem::Requirement
635
+ requirements:
636
+ - - ">="
637
+ - !ruby/object:Gem::Version
638
+ version: 1.15.0
639
+ - - "<"
640
+ - !ruby/object:Gem::Version
641
+ version: 2.0.0
642
+ - !ruby/object:Gem::Dependency
643
+ name: emoji_regex
644
+ requirement: !ruby/object:Gem::Requirement
645
+ requirements:
646
+ - - ">="
647
+ - !ruby/object:Gem::Version
648
+ version: '0.1'
649
+ - - "<"
650
+ - !ruby/object:Gem::Version
651
+ version: '2.0'
652
+ type: :runtime
653
+ prerelease: false
654
+ version_requirements: !ruby/object:Gem::Requirement
655
+ requirements:
656
+ - - ">="
657
+ - !ruby/object:Gem::Version
658
+ version: '0.1'
659
+ - - "<"
660
+ - !ruby/object:Gem::Version
661
+ version: '2.0'
662
+ - !ruby/object:Gem::Dependency
663
+ name: rake
664
+ requirement: !ruby/object:Gem::Requirement
665
+ requirements:
666
+ - - "<"
667
+ - !ruby/object:Gem::Version
668
+ version: '12'
669
+ type: :development
670
+ prerelease: false
671
+ version_requirements: !ruby/object:Gem::Requirement
672
+ requirements:
673
+ - - "<"
674
+ - !ruby/object:Gem::Version
675
+ version: '12'
676
+ - !ruby/object:Gem::Dependency
677
+ name: rspec
678
+ requirement: !ruby/object:Gem::Requirement
679
+ requirements:
680
+ - - "~>"
681
+ - !ruby/object:Gem::Version
682
+ version: 3.5.0
683
+ type: :development
684
+ prerelease: false
685
+ version_requirements: !ruby/object:Gem::Requirement
686
+ requirements:
687
+ - - "~>"
688
+ - !ruby/object:Gem::Version
689
+ version: 3.5.0
690
+ - !ruby/object:Gem::Dependency
691
+ name: rspec_junit_formatter
692
+ requirement: !ruby/object:Gem::Requirement
693
+ requirements:
694
+ - - "~>"
695
+ - !ruby/object:Gem::Version
696
+ version: 0.2.3
697
+ type: :development
698
+ prerelease: false
699
+ version_requirements: !ruby/object:Gem::Requirement
700
+ requirements:
701
+ - - "~>"
702
+ - !ruby/object:Gem::Version
703
+ version: 0.2.3
704
+ - !ruby/object:Gem::Dependency
705
+ name: pry
706
+ requirement: !ruby/object:Gem::Requirement
707
+ requirements:
708
+ - - ">="
709
+ - !ruby/object:Gem::Version
710
+ version: '0'
711
+ type: :development
712
+ prerelease: false
713
+ version_requirements: !ruby/object:Gem::Requirement
714
+ requirements:
715
+ - - ">="
716
+ - !ruby/object:Gem::Version
717
+ version: '0'
718
+ - !ruby/object:Gem::Dependency
719
+ name: pry-byebug
720
+ requirement: !ruby/object:Gem::Requirement
721
+ requirements:
722
+ - - ">="
723
+ - !ruby/object:Gem::Version
724
+ version: '0'
725
+ type: :development
726
+ prerelease: false
727
+ version_requirements: !ruby/object:Gem::Requirement
728
+ requirements:
729
+ - - ">="
730
+ - !ruby/object:Gem::Version
731
+ version: '0'
732
+ - !ruby/object:Gem::Dependency
733
+ name: pry-rescue
734
+ requirement: !ruby/object:Gem::Requirement
735
+ requirements:
736
+ - - ">="
737
+ - !ruby/object:Gem::Version
738
+ version: '0'
739
+ type: :development
740
+ prerelease: false
741
+ version_requirements: !ruby/object:Gem::Requirement
742
+ requirements:
743
+ - - ">="
744
+ - !ruby/object:Gem::Version
745
+ version: '0'
746
+ - !ruby/object:Gem::Dependency
747
+ name: pry-stack_explorer
748
+ requirement: !ruby/object:Gem::Requirement
749
+ requirements:
750
+ - - ">="
751
+ - !ruby/object:Gem::Version
752
+ version: '0'
753
+ type: :development
754
+ prerelease: false
755
+ version_requirements: !ruby/object:Gem::Requirement
756
+ requirements:
757
+ - - ">="
758
+ - !ruby/object:Gem::Version
759
+ version: '0'
760
+ - !ruby/object:Gem::Dependency
761
+ name: yard
762
+ requirement: !ruby/object:Gem::Requirement
763
+ requirements:
764
+ - - "~>"
765
+ - !ruby/object:Gem::Version
766
+ version: 0.9.11
767
+ type: :development
768
+ prerelease: false
769
+ version_requirements: !ruby/object:Gem::Requirement
770
+ requirements:
771
+ - - "~>"
772
+ - !ruby/object:Gem::Version
773
+ version: 0.9.11
774
+ - !ruby/object:Gem::Dependency
775
+ name: webmock
776
+ requirement: !ruby/object:Gem::Requirement
777
+ requirements:
778
+ - - "~>"
779
+ - !ruby/object:Gem::Version
780
+ version: 2.3.2
781
+ type: :development
782
+ prerelease: false
783
+ version_requirements: !ruby/object:Gem::Requirement
784
+ requirements:
785
+ - - "~>"
786
+ - !ruby/object:Gem::Version
787
+ version: 2.3.2
788
+ - !ruby/object:Gem::Dependency
789
+ name: coveralls
790
+ requirement: !ruby/object:Gem::Requirement
791
+ requirements:
792
+ - - "~>"
793
+ - !ruby/object:Gem::Version
794
+ version: 0.8.13
795
+ type: :development
796
+ prerelease: false
797
+ version_requirements: !ruby/object:Gem::Requirement
798
+ requirements:
799
+ - - "~>"
800
+ - !ruby/object:Gem::Version
801
+ version: 0.8.13
802
+ - !ruby/object:Gem::Dependency
803
+ name: rubocop
804
+ requirement: !ruby/object:Gem::Requirement
805
+ requirements:
806
+ - - '='
807
+ - !ruby/object:Gem::Version
808
+ version: 0.49.1
809
+ type: :development
810
+ prerelease: false
811
+ version_requirements: !ruby/object:Gem::Requirement
812
+ requirements:
813
+ - - '='
814
+ - !ruby/object:Gem::Version
815
+ version: 0.49.1
816
+ - !ruby/object:Gem::Dependency
817
+ name: rubocop-require_tools
818
+ requirement: !ruby/object:Gem::Requirement
819
+ requirements:
820
+ - - ">="
821
+ - !ruby/object:Gem::Version
822
+ version: 0.1.2
823
+ type: :development
824
+ prerelease: false
825
+ version_requirements: !ruby/object:Gem::Requirement
826
+ requirements:
827
+ - - ">="
828
+ - !ruby/object:Gem::Version
829
+ version: 0.1.2
830
+ - !ruby/object:Gem::Dependency
831
+ name: rb-readline
832
+ requirement: !ruby/object:Gem::Requirement
833
+ requirements:
834
+ - - ">="
835
+ - !ruby/object:Gem::Version
836
+ version: '0'
837
+ type: :development
838
+ prerelease: false
839
+ version_requirements: !ruby/object:Gem::Requirement
840
+ requirements:
841
+ - - ">="
842
+ - !ruby/object:Gem::Version
843
+ version: '0'
844
+ - !ruby/object:Gem::Dependency
845
+ name: rest-client
846
+ requirement: !ruby/object:Gem::Requirement
847
+ requirements:
848
+ - - ">="
849
+ - !ruby/object:Gem::Version
850
+ version: 1.8.0
851
+ type: :development
852
+ prerelease: false
853
+ version_requirements: !ruby/object:Gem::Requirement
854
+ requirements:
855
+ - - ">="
856
+ - !ruby/object:Gem::Version
857
+ version: 1.8.0
858
+ - !ruby/object:Gem::Dependency
859
+ name: fakefs
860
+ requirement: !ruby/object:Gem::Requirement
861
+ requirements:
862
+ - - "~>"
863
+ - !ruby/object:Gem::Version
864
+ version: 0.8.1
865
+ type: :development
866
+ prerelease: false
867
+ version_requirements: !ruby/object:Gem::Requirement
868
+ requirements:
869
+ - - "~>"
870
+ - !ruby/object:Gem::Version
871
+ version: 0.8.1
872
+ - !ruby/object:Gem::Dependency
873
+ name: sinatra
874
+ requirement: !ruby/object:Gem::Requirement
875
+ requirements:
876
+ - - "~>"
877
+ - !ruby/object:Gem::Version
878
+ version: 1.4.8
879
+ type: :development
880
+ prerelease: false
881
+ version_requirements: !ruby/object:Gem::Requirement
882
+ requirements:
883
+ - - "~>"
884
+ - !ruby/object:Gem::Version
885
+ version: 1.4.8
886
+ - !ruby/object:Gem::Dependency
887
+ name: xcov
888
+ requirement: !ruby/object:Gem::Requirement
889
+ requirements:
890
+ - - "~>"
891
+ - !ruby/object:Gem::Version
892
+ version: 1.4.1
893
+ type: :development
894
+ prerelease: false
895
+ version_requirements: !ruby/object:Gem::Requirement
896
+ requirements:
897
+ - - "~>"
898
+ - !ruby/object:Gem::Version
899
+ version: 1.4.1
900
+ - !ruby/object:Gem::Dependency
901
+ name: climate_control
902
+ requirement: !ruby/object:Gem::Requirement
903
+ requirements:
904
+ - - "~>"
905
+ - !ruby/object:Gem::Version
906
+ version: 0.2.0
907
+ type: :development
908
+ prerelease: false
909
+ version_requirements: !ruby/object:Gem::Requirement
910
+ requirements:
911
+ - - "~>"
912
+ - !ruby/object:Gem::Version
913
+ version: 0.2.0
914
+ description: The easiest way to automate beta deployments and releases for your iOS
915
+ and Android apps
916
+ email:
917
+ - fastlane@krausefx.com
918
+ executables:
919
+ - bin-proxy
920
+ - fastlane
921
+ extensions: []
922
+ extra_rdoc_files: []
923
+ files:
924
+ - ".yardopts"
925
+ - LICENSE
926
+ - README.md
927
+ - bin/bin-proxy
928
+ - bin/fastlane
929
+ - cert/README.md
930
+ - cert/lib/cert.rb
931
+ - cert/lib/cert/commands_generator.rb
932
+ - cert/lib/cert/module.rb
933
+ - cert/lib/cert/options.rb
934
+ - cert/lib/cert/runner.rb
935
+ - credentials_manager/README.md
936
+ - credentials_manager/lib/credentials_manager.rb
937
+ - credentials_manager/lib/credentials_manager/account_manager.rb
938
+ - credentials_manager/lib/credentials_manager/appfile_config.rb
939
+ - credentials_manager/lib/credentials_manager/cli.rb
940
+ - deliver/README.md
941
+ - deliver/lib/assets/DeliverfileDefault
942
+ - deliver/lib/assets/DeliverfileDefault.swift
943
+ - deliver/lib/assets/ScreenshotsHelp
944
+ - deliver/lib/assets/summary.html.erb
945
+ - deliver/lib/deliver.rb
946
+ - deliver/lib/deliver/app_screenshot.rb
947
+ - deliver/lib/deliver/commands_generator.rb
948
+ - deliver/lib/deliver/detect_values.rb
949
+ - deliver/lib/deliver/download_screenshots.rb
950
+ - deliver/lib/deliver/generate_summary.rb
951
+ - deliver/lib/deliver/html_generator.rb
952
+ - deliver/lib/deliver/loader.rb
953
+ - deliver/lib/deliver/module.rb
954
+ - deliver/lib/deliver/options.rb
955
+ - deliver/lib/deliver/runner.rb
956
+ - deliver/lib/deliver/setup.rb
957
+ - deliver/lib/deliver/submit_for_review.rb
958
+ - deliver/lib/deliver/upload_assets.rb
959
+ - deliver/lib/deliver/upload_metadata.rb
960
+ - deliver/lib/deliver/upload_price_tier.rb
961
+ - deliver/lib/deliver/upload_screenshots.rb
962
+ - fastlane/README.md
963
+ - fastlane/lib/assets/ActionDetails.md.erb
964
+ - fastlane/lib/assets/Actions.md.erb
965
+ - fastlane/lib/assets/AppfileTemplate
966
+ - fastlane/lib/assets/AppfileTemplate.swift
967
+ - fastlane/lib/assets/AppfileTemplateAndroid
968
+ - fastlane/lib/assets/DefaultFastfileTemplate
969
+ - fastlane/lib/assets/DefaultFastfileTemplate.swift
970
+ - fastlane/lib/assets/completions/completion.bash
971
+ - fastlane/lib/assets/completions/completion.fish
972
+ - fastlane/lib/assets/completions/completion.sh
973
+ - fastlane/lib/assets/completions/completion.zsh
974
+ - fastlane/lib/assets/custom_action_template.rb
975
+ - fastlane/lib/assets/mailgun_html_template.erb
976
+ - fastlane/lib/assets/report_template.xml.erb
977
+ - fastlane/lib/assets/s3_html_template.erb
978
+ - fastlane/lib/assets/s3_plist_template.erb
979
+ - fastlane/lib/assets/s3_version_template.erb
980
+ - fastlane/lib/fastlane.rb
981
+ - fastlane/lib/fastlane/action.rb
982
+ - fastlane/lib/fastlane/action_collector.rb
983
+ - fastlane/lib/fastlane/actions/README.md
984
+ - fastlane/lib/fastlane/actions/actions_helper.rb
985
+ - fastlane/lib/fastlane/actions/adb.rb
986
+ - fastlane/lib/fastlane/actions/adb_devices.rb
987
+ - fastlane/lib/fastlane/actions/add_extra_platforms.rb
988
+ - fastlane/lib/fastlane/actions/add_git_tag.rb
989
+ - fastlane/lib/fastlane/actions/app_store_build_number.rb
990
+ - fastlane/lib/fastlane/actions/appaloosa.rb
991
+ - fastlane/lib/fastlane/actions/appetize.rb
992
+ - fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb
993
+ - fastlane/lib/fastlane/actions/appium.rb
994
+ - fastlane/lib/fastlane/actions/appledoc.rb
995
+ - fastlane/lib/fastlane/actions/appstore.rb
996
+ - fastlane/lib/fastlane/actions/apteligent.rb
997
+ - fastlane/lib/fastlane/actions/artifactory.rb
998
+ - fastlane/lib/fastlane/actions/automatic_code_signing.rb
999
+ - fastlane/lib/fastlane/actions/backup_file.rb
1000
+ - fastlane/lib/fastlane/actions/backup_xcarchive.rb
1001
+ - fastlane/lib/fastlane/actions/badge.rb
1002
+ - fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb
1003
+ - fastlane/lib/fastlane/actions/build_android_app.rb
1004
+ - fastlane/lib/fastlane/actions/build_app.rb
1005
+ - fastlane/lib/fastlane/actions/build_ios_app.rb
1006
+ - fastlane/lib/fastlane/actions/bundle_install.rb
1007
+ - fastlane/lib/fastlane/actions/capture_android_screenshots.rb
1008
+ - fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
1009
+ - fastlane/lib/fastlane/actions/capture_screenshots.rb
1010
+ - fastlane/lib/fastlane/actions/carthage.rb
1011
+ - fastlane/lib/fastlane/actions/cert.rb
1012
+ - fastlane/lib/fastlane/actions/changelog_from_git_commits.rb
1013
+ - fastlane/lib/fastlane/actions/chatwork.rb
1014
+ - fastlane/lib/fastlane/actions/check_app_store_metadata.rb
1015
+ - fastlane/lib/fastlane/actions/clean_build_artifacts.rb
1016
+ - fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
1017
+ - fastlane/lib/fastlane/actions/clear_derived_data.rb
1018
+ - fastlane/lib/fastlane/actions/clipboard.rb
1019
+ - fastlane/lib/fastlane/actions/cloc.rb
1020
+ - fastlane/lib/fastlane/actions/cocoapods.rb
1021
+ - fastlane/lib/fastlane/actions/commit_github_file.rb
1022
+ - fastlane/lib/fastlane/actions/commit_version_bump.rb
1023
+ - fastlane/lib/fastlane/actions/copy_artifacts.rb
1024
+ - fastlane/lib/fastlane/actions/crashlytics.rb
1025
+ - fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb
1026
+ - fastlane/lib/fastlane/actions/create_app_online.rb
1027
+ - fastlane/lib/fastlane/actions/create_keychain.rb
1028
+ - fastlane/lib/fastlane/actions/create_pull_request.rb
1029
+ - fastlane/lib/fastlane/actions/danger.rb
1030
+ - fastlane/lib/fastlane/actions/debug.rb
1031
+ - fastlane/lib/fastlane/actions/default_platform.rb
1032
+ - fastlane/lib/fastlane/actions/delete_keychain.rb
1033
+ - fastlane/lib/fastlane/actions/deliver.rb
1034
+ - fastlane/lib/fastlane/actions/deploygate.rb
1035
+ - fastlane/lib/fastlane/actions/device_grid/README.md
1036
+ - fastlane/lib/fastlane/actions/docs/build_ios_app.md
1037
+ - fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md
1038
+ - fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md
1039
+ - fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md
1040
+ - fastlane/lib/fastlane/actions/docs/create_app_online.md
1041
+ - fastlane/lib/fastlane/actions/docs/frame_screenshots.md
1042
+ - fastlane/lib/fastlane/actions/docs/get_certificates.md
1043
+ - fastlane/lib/fastlane/actions/docs/get_provisioning_profile.md
1044
+ - fastlane/lib/fastlane/actions/docs/get_push_certificate.md
1045
+ - fastlane/lib/fastlane/actions/docs/run_tests.md
1046
+ - fastlane/lib/fastlane/actions/docs/sync_code_signing.md
1047
+ - fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb
1048
+ - fastlane/lib/fastlane/actions/docs/upload_to_play_store.md
1049
+ - fastlane/lib/fastlane/actions/docs/upload_to_testflight.md
1050
+ - fastlane/lib/fastlane/actions/dotgpg_environment.rb
1051
+ - fastlane/lib/fastlane/actions/download.rb
1052
+ - fastlane/lib/fastlane/actions/download_dsyms.rb
1053
+ - fastlane/lib/fastlane/actions/download_from_play_store.rb
1054
+ - fastlane/lib/fastlane/actions/dsym_zip.rb
1055
+ - fastlane/lib/fastlane/actions/echo.rb
1056
+ - fastlane/lib/fastlane/actions/ensure_bundle_exec.rb
1057
+ - fastlane/lib/fastlane/actions/ensure_git_branch.rb
1058
+ - fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
1059
+ - fastlane/lib/fastlane/actions/ensure_no_debug_code.rb
1060
+ - fastlane/lib/fastlane/actions/ensure_xcode_version.rb
1061
+ - fastlane/lib/fastlane/actions/environment_variable.rb
1062
+ - fastlane/lib/fastlane/actions/erb.rb
1063
+ - fastlane/lib/fastlane/actions/fastlane_version.rb
1064
+ - fastlane/lib/fastlane/actions/flock.rb
1065
+ - fastlane/lib/fastlane/actions/frame_screenshots.rb
1066
+ - fastlane/lib/fastlane/actions/frameit.rb
1067
+ - fastlane/lib/fastlane/actions/gcovr.rb
1068
+ - fastlane/lib/fastlane/actions/get_build_number.rb
1069
+ - fastlane/lib/fastlane/actions/get_build_number_repository.rb
1070
+ - fastlane/lib/fastlane/actions/get_certificates.rb
1071
+ - fastlane/lib/fastlane/actions/get_github_release.rb
1072
+ - fastlane/lib/fastlane/actions/get_info_plist_value.rb
1073
+ - fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb
1074
+ - fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb
1075
+ - fastlane/lib/fastlane/actions/get_provisioning_profile.rb
1076
+ - fastlane/lib/fastlane/actions/get_push_certificate.rb
1077
+ - fastlane/lib/fastlane/actions/get_version_number.rb
1078
+ - fastlane/lib/fastlane/actions/git_add.rb
1079
+ - fastlane/lib/fastlane/actions/git_branch.rb
1080
+ - fastlane/lib/fastlane/actions/git_commit.rb
1081
+ - fastlane/lib/fastlane/actions/git_pull.rb
1082
+ - fastlane/lib/fastlane/actions/git_submodule_update.rb
1083
+ - fastlane/lib/fastlane/actions/git_tag_exists.rb
1084
+ - fastlane/lib/fastlane/actions/github_api.rb
1085
+ - fastlane/lib/fastlane/actions/google_play_track_version_codes.rb
1086
+ - fastlane/lib/fastlane/actions/gradle.rb
1087
+ - fastlane/lib/fastlane/actions/gym.rb
1088
+ - fastlane/lib/fastlane/actions/hg_add_tag.rb
1089
+ - fastlane/lib/fastlane/actions/hg_commit_version_bump.rb
1090
+ - fastlane/lib/fastlane/actions/hg_ensure_clean_status.rb
1091
+ - fastlane/lib/fastlane/actions/hg_push.rb
1092
+ - fastlane/lib/fastlane/actions/hipchat.rb
1093
+ - fastlane/lib/fastlane/actions/hockey.rb
1094
+ - fastlane/lib/fastlane/actions/ifttt.rb
1095
+ - fastlane/lib/fastlane/actions/import.rb
1096
+ - fastlane/lib/fastlane/actions/import_certificate.rb
1097
+ - fastlane/lib/fastlane/actions/import_from_git.rb
1098
+ - fastlane/lib/fastlane/actions/increment_build_number.rb
1099
+ - fastlane/lib/fastlane/actions/increment_version_number.rb
1100
+ - fastlane/lib/fastlane/actions/install_on_device.rb
1101
+ - fastlane/lib/fastlane/actions/install_provisioning_profile.rb
1102
+ - fastlane/lib/fastlane/actions/install_xcode_plugin.rb
1103
+ - fastlane/lib/fastlane/actions/installr.rb
1104
+ - fastlane/lib/fastlane/actions/ipa.rb
1105
+ - fastlane/lib/fastlane/actions/is_ci.rb
1106
+ - fastlane/lib/fastlane/actions/jazzy.rb
1107
+ - fastlane/lib/fastlane/actions/jira.rb
1108
+ - fastlane/lib/fastlane/actions/lane_context.rb
1109
+ - fastlane/lib/fastlane/actions/last_git_commit.rb
1110
+ - fastlane/lib/fastlane/actions/last_git_tag.rb
1111
+ - fastlane/lib/fastlane/actions/latest_testflight_build_number.rb
1112
+ - fastlane/lib/fastlane/actions/lcov.rb
1113
+ - fastlane/lib/fastlane/actions/mailgun.rb
1114
+ - fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb
1115
+ - fastlane/lib/fastlane/actions/match.rb
1116
+ - fastlane/lib/fastlane/actions/min_fastlane_version.rb
1117
+ - fastlane/lib/fastlane/actions/modify_services.rb
1118
+ - fastlane/lib/fastlane/actions/nexus_upload.rb
1119
+ - fastlane/lib/fastlane/actions/notification.rb
1120
+ - fastlane/lib/fastlane/actions/notify.rb
1121
+ - fastlane/lib/fastlane/actions/number_of_commits.rb
1122
+ - fastlane/lib/fastlane/actions/oclint.rb
1123
+ - fastlane/lib/fastlane/actions/onesignal.rb
1124
+ - fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
1125
+ - fastlane/lib/fastlane/actions/opt_out_usage.rb
1126
+ - fastlane/lib/fastlane/actions/pem.rb
1127
+ - fastlane/lib/fastlane/actions/pilot.rb
1128
+ - fastlane/lib/fastlane/actions/pod_lib_lint.rb
1129
+ - fastlane/lib/fastlane/actions/pod_push.rb
1130
+ - fastlane/lib/fastlane/actions/podio_item.rb
1131
+ - fastlane/lib/fastlane/actions/precheck.rb
1132
+ - fastlane/lib/fastlane/actions/println.rb
1133
+ - fastlane/lib/fastlane/actions/produce.rb
1134
+ - fastlane/lib/fastlane/actions/prompt.rb
1135
+ - fastlane/lib/fastlane/actions/push_git_tags.rb
1136
+ - fastlane/lib/fastlane/actions/push_to_git_remote.rb
1137
+ - fastlane/lib/fastlane/actions/puts.rb
1138
+ - fastlane/lib/fastlane/actions/read_podspec.rb
1139
+ - fastlane/lib/fastlane/actions/recreate_schemes.rb
1140
+ - fastlane/lib/fastlane/actions/register_device.rb
1141
+ - fastlane/lib/fastlane/actions/register_devices.rb
1142
+ - fastlane/lib/fastlane/actions/reset_git_repo.rb
1143
+ - fastlane/lib/fastlane/actions/reset_simulator_contents.rb
1144
+ - fastlane/lib/fastlane/actions/resign.rb
1145
+ - fastlane/lib/fastlane/actions/restore_file.rb
1146
+ - fastlane/lib/fastlane/actions/rocket.rb
1147
+ - fastlane/lib/fastlane/actions/rsync.rb
1148
+ - fastlane/lib/fastlane/actions/ruby_version.rb
1149
+ - fastlane/lib/fastlane/actions/run_tests.rb
1150
+ - fastlane/lib/fastlane/actions/s3.rb
1151
+ - fastlane/lib/fastlane/actions/say.rb
1152
+ - fastlane/lib/fastlane/actions/scan.rb
1153
+ - fastlane/lib/fastlane/actions/scp.rb
1154
+ - fastlane/lib/fastlane/actions/screengrab.rb
1155
+ - fastlane/lib/fastlane/actions/set_build_number_repository.rb
1156
+ - fastlane/lib/fastlane/actions/set_changelog.rb
1157
+ - fastlane/lib/fastlane/actions/set_github_release.rb
1158
+ - fastlane/lib/fastlane/actions/set_info_plist_value.rb
1159
+ - fastlane/lib/fastlane/actions/set_pod_key.rb
1160
+ - fastlane/lib/fastlane/actions/setup_ci.rb
1161
+ - fastlane/lib/fastlane/actions/setup_circle_ci.rb
1162
+ - fastlane/lib/fastlane/actions/setup_jenkins.rb
1163
+ - fastlane/lib/fastlane/actions/setup_travis.rb
1164
+ - fastlane/lib/fastlane/actions/sh.rb
1165
+ - fastlane/lib/fastlane/actions/sigh.rb
1166
+ - fastlane/lib/fastlane/actions/skip_docs.rb
1167
+ - fastlane/lib/fastlane/actions/slack.rb
1168
+ - fastlane/lib/fastlane/actions/slather.rb
1169
+ - fastlane/lib/fastlane/actions/snapshot.rb
1170
+ - fastlane/lib/fastlane/actions/sonar.rb
1171
+ - fastlane/lib/fastlane/actions/spaceship_logs.rb
1172
+ - fastlane/lib/fastlane/actions/splunkmint.rb
1173
+ - fastlane/lib/fastlane/actions/spm.rb
1174
+ - fastlane/lib/fastlane/actions/ssh.rb
1175
+ - fastlane/lib/fastlane/actions/supply.rb
1176
+ - fastlane/lib/fastlane/actions/swiftlint.rb
1177
+ - fastlane/lib/fastlane/actions/sync_code_signing.rb
1178
+ - fastlane/lib/fastlane/actions/team_id.rb
1179
+ - fastlane/lib/fastlane/actions/team_name.rb
1180
+ - fastlane/lib/fastlane/actions/testfairy.rb
1181
+ - fastlane/lib/fastlane/actions/testflight.rb
1182
+ - fastlane/lib/fastlane/actions/tryouts.rb
1183
+ - fastlane/lib/fastlane/actions/twitter.rb
1184
+ - fastlane/lib/fastlane/actions/typetalk.rb
1185
+ - fastlane/lib/fastlane/actions/unlock_keychain.rb
1186
+ - fastlane/lib/fastlane/actions/update_app_group_identifiers.rb
1187
+ - fastlane/lib/fastlane/actions/update_app_identifier.rb
1188
+ - fastlane/lib/fastlane/actions/update_fastlane.rb
1189
+ - fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb
1190
+ - fastlane/lib/fastlane/actions/update_info_plist.rb
1191
+ - fastlane/lib/fastlane/actions/update_plist.rb
1192
+ - fastlane/lib/fastlane/actions/update_project_code_signing.rb
1193
+ - fastlane/lib/fastlane/actions/update_project_provisioning.rb
1194
+ - fastlane/lib/fastlane/actions/update_project_team.rb
1195
+ - fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb
1196
+ - fastlane/lib/fastlane/actions/update_url_schemes.rb
1197
+ - fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb
1198
+ - fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb
1199
+ - fastlane/lib/fastlane/actions/upload_to_app_store.rb
1200
+ - fastlane/lib/fastlane/actions/upload_to_play_store.rb
1201
+ - fastlane/lib/fastlane/actions/upload_to_testflight.rb
1202
+ - fastlane/lib/fastlane/actions/validate_play_store_json_key.rb
1203
+ - fastlane/lib/fastlane/actions/verify_build.rb
1204
+ - fastlane/lib/fastlane/actions/verify_pod_keys.rb
1205
+ - fastlane/lib/fastlane/actions/verify_xcode.rb
1206
+ - fastlane/lib/fastlane/actions/version_bump_podspec.rb
1207
+ - fastlane/lib/fastlane/actions/version_get_podspec.rb
1208
+ - fastlane/lib/fastlane/actions/xcode_install.rb
1209
+ - fastlane/lib/fastlane/actions/xcode_select.rb
1210
+ - fastlane/lib/fastlane/actions/xcode_server_get_assets.rb
1211
+ - fastlane/lib/fastlane/actions/xcodebuild.rb
1212
+ - fastlane/lib/fastlane/actions/xcov.rb
1213
+ - fastlane/lib/fastlane/actions/xctool.rb
1214
+ - fastlane/lib/fastlane/actions/xcversion.rb
1215
+ - fastlane/lib/fastlane/actions/zip.rb
1216
+ - fastlane/lib/fastlane/auto_complete.rb
1217
+ - fastlane/lib/fastlane/boolean.rb
1218
+ - fastlane/lib/fastlane/cli_tools_distributor.rb
1219
+ - fastlane/lib/fastlane/command_line_handler.rb
1220
+ - fastlane/lib/fastlane/commands_generator.rb
1221
+ - fastlane/lib/fastlane/configuration_helper.rb
1222
+ - fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb
1223
+ - fastlane/lib/fastlane/documentation/actions_list.rb
1224
+ - fastlane/lib/fastlane/documentation/docs_generator.rb
1225
+ - fastlane/lib/fastlane/documentation/markdown_docs_generator.rb
1226
+ - fastlane/lib/fastlane/environment_printer.rb
1227
+ - fastlane/lib/fastlane/erb_template_helper.rb
1228
+ - fastlane/lib/fastlane/fast_file.rb
1229
+ - fastlane/lib/fastlane/fastlane_require.rb
1230
+ - fastlane/lib/fastlane/features.rb
1231
+ - fastlane/lib/fastlane/helper/README.md
1232
+ - fastlane/lib/fastlane/helper/adb_helper.rb
1233
+ - fastlane/lib/fastlane/helper/crashlytics_helper.rb
1234
+ - fastlane/lib/fastlane/helper/dotenv_helper.rb
1235
+ - fastlane/lib/fastlane/helper/gem_helper.rb
1236
+ - fastlane/lib/fastlane/helper/git_helper.rb
1237
+ - fastlane/lib/fastlane/helper/gradle_helper.rb
1238
+ - fastlane/lib/fastlane/helper/podspec_helper.rb
1239
+ - fastlane/lib/fastlane/helper/sh_helper.rb
1240
+ - fastlane/lib/fastlane/helper/xcodeproj_helper.rb
1241
+ - fastlane/lib/fastlane/helper/xcversion_helper.rb
1242
+ - fastlane/lib/fastlane/junit_generator.rb
1243
+ - fastlane/lib/fastlane/lane.rb
1244
+ - fastlane/lib/fastlane/lane_list.rb
1245
+ - fastlane/lib/fastlane/lane_manager.rb
1246
+ - fastlane/lib/fastlane/lane_manager_base.rb
1247
+ - fastlane/lib/fastlane/markdown_table_formatter.rb
1248
+ - fastlane/lib/fastlane/new_action.rb
1249
+ - fastlane/lib/fastlane/one_off.rb
1250
+ - fastlane/lib/fastlane/other_action.rb
1251
+ - fastlane/lib/fastlane/plugins/plugin_fetcher.rb
1252
+ - fastlane/lib/fastlane/plugins/plugin_generator.rb
1253
+ - fastlane/lib/fastlane/plugins/plugin_generator_ui.rb
1254
+ - fastlane/lib/fastlane/plugins/plugin_info.rb
1255
+ - fastlane/lib/fastlane/plugins/plugin_info_collector.rb
1256
+ - fastlane/lib/fastlane/plugins/plugin_manager.rb
1257
+ - fastlane/lib/fastlane/plugins/plugin_search.rb
1258
+ - fastlane/lib/fastlane/plugins/plugin_update_manager.rb
1259
+ - fastlane/lib/fastlane/plugins/plugins.rb
1260
+ - fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb
1261
+ - fastlane/lib/fastlane/plugins/template/.circleci/config.yml
1262
+ - fastlane/lib/fastlane/plugins/template/.gitignore
1263
+ - fastlane/lib/fastlane/plugins/template/.rspec
1264
+ - fastlane/lib/fastlane/plugins/template/.rubocop.yml
1265
+ - fastlane/lib/fastlane/plugins/template/.travis.yml
1266
+ - fastlane/lib/fastlane/plugins/template/Gemfile
1267
+ - fastlane/lib/fastlane/plugins/template/LICENSE.erb
1268
+ - fastlane/lib/fastlane/plugins/template/README.md.erb
1269
+ - fastlane/lib/fastlane/plugins/template/Rakefile
1270
+ - fastlane/lib/fastlane/plugins/template/fastlane/Fastfile.erb
1271
+ - fastlane/lib/fastlane/plugins/template/fastlane/Pluginfile.erb
1272
+ - fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb
1273
+ - fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb
1274
+ - fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/helper/%plugin_name%_helper.rb.erb
1275
+ - fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/version.rb.erb
1276
+ - fastlane/lib/fastlane/plugins/template/spec/%plugin_name%_action_spec.rb.erb
1277
+ - fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb
1278
+ - fastlane/lib/fastlane/runner.rb
1279
+ - fastlane/lib/fastlane/server/action_command.rb
1280
+ - fastlane/lib/fastlane/server/action_command_return.rb
1281
+ - fastlane/lib/fastlane/server/command_executor.rb
1282
+ - fastlane/lib/fastlane/server/command_parser.rb
1283
+ - fastlane/lib/fastlane/server/control_command.rb
1284
+ - fastlane/lib/fastlane/server/json_return_value_processor.rb
1285
+ - fastlane/lib/fastlane/server/socket_server.rb
1286
+ - fastlane/lib/fastlane/server/socket_server_action_command_executor.rb
1287
+ - fastlane/lib/fastlane/setup/setup.rb
1288
+ - fastlane/lib/fastlane/setup/setup_android.rb
1289
+ - fastlane/lib/fastlane/setup/setup_ios.rb
1290
+ - fastlane/lib/fastlane/shells.rb
1291
+ - fastlane/lib/fastlane/supported_platforms.rb
1292
+ - fastlane/lib/fastlane/swift_fastlane_api_generator.rb
1293
+ - fastlane/lib/fastlane/swift_fastlane_function.rb
1294
+ - fastlane/lib/fastlane/swift_lane_manager.rb
1295
+ - fastlane/lib/fastlane/swift_runner_upgrader.rb
1296
+ - fastlane/lib/fastlane/tools.rb
1297
+ - fastlane/lib/fastlane/version.rb
1298
+ - fastlane/swift/Appfile.swift
1299
+ - fastlane/swift/ArgumentProcessor.swift
1300
+ - fastlane/swift/ControlCommand.swift
1301
+ - fastlane/swift/Deliverfile.swift
1302
+ - fastlane/swift/DeliverfileProtocol.swift
1303
+ - fastlane/swift/Fastfile.swift
1304
+ - fastlane/swift/Fastlane.swift
1305
+ - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
1306
+ - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
1307
+ - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
1308
+ - fastlane/swift/FastlaneSwiftRunner/README.txt
1309
+ - fastlane/swift/Gymfile.swift
1310
+ - fastlane/swift/GymfileProtocol.swift
1311
+ - fastlane/swift/LaneFileProtocol.swift
1312
+ - fastlane/swift/Matchfile.swift
1313
+ - fastlane/swift/MatchfileProtocol.swift
1314
+ - fastlane/swift/Precheckfile.swift
1315
+ - fastlane/swift/PrecheckfileProtocol.swift
1316
+ - fastlane/swift/RubyCommand.swift
1317
+ - fastlane/swift/RubyCommandable.swift
1318
+ - fastlane/swift/Runner.swift
1319
+ - fastlane/swift/RunnerArgument.swift
1320
+ - fastlane/swift/Scanfile.swift
1321
+ - fastlane/swift/ScanfileProtocol.swift
1322
+ - fastlane/swift/Screengrabfile.swift
1323
+ - fastlane/swift/ScreengrabfileProtocol.swift
1324
+ - fastlane/swift/Snapshotfile.swift
1325
+ - fastlane/swift/SnapshotfileProtocol.swift
1326
+ - fastlane/swift/SocketClient.swift
1327
+ - fastlane/swift/SocketClientDelegateProtocol.swift
1328
+ - fastlane/swift/SocketResponse.swift
1329
+ - fastlane/swift/main.swift
1330
+ - fastlane/swift/upgrade_manifest.json
1331
+ - fastlane_core/README.md
1332
+ - fastlane_core/lib/assets/XMLTemplate.xml.erb
1333
+ - fastlane_core/lib/fastlane_core.rb
1334
+ - fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb
1335
+ - fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb
1336
+ - fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb
1337
+ - fastlane_core/lib/fastlane_core/analytics/analytics_ingester_client.rb
1338
+ - fastlane_core/lib/fastlane_core/analytics/analytics_session.rb
1339
+ - fastlane_core/lib/fastlane_core/analytics/app_identifier_guesser.rb
1340
+ - fastlane_core/lib/fastlane_core/android_package_name_guesser.rb
1341
+ - fastlane_core/lib/fastlane_core/build_watcher.rb
1342
+ - fastlane_core/lib/fastlane_core/cert_checker.rb
1343
+ - fastlane_core/lib/fastlane_core/command_executor.rb
1344
+ - fastlane_core/lib/fastlane_core/configuration/commander_generator.rb
1345
+ - fastlane_core/lib/fastlane_core/configuration/config_item.rb
1346
+ - fastlane_core/lib/fastlane_core/configuration/configuration.rb
1347
+ - fastlane_core/lib/fastlane_core/configuration/configuration_file.rb
1348
+ - fastlane_core/lib/fastlane_core/core_ext/cfpropertylist.rb
1349
+ - fastlane_core/lib/fastlane_core/core_ext/shellwords.rb
1350
+ - fastlane_core/lib/fastlane_core/core_ext/string.rb
1351
+ - fastlane_core/lib/fastlane_core/device_manager.rb
1352
+ - fastlane_core/lib/fastlane_core/env.rb
1353
+ - fastlane_core/lib/fastlane_core/fastlane_folder.rb
1354
+ - fastlane_core/lib/fastlane_core/fastlane_pty.rb
1355
+ - fastlane_core/lib/fastlane_core/feature/feature.rb
1356
+ - fastlane_core/lib/fastlane_core/features.rb
1357
+ - fastlane_core/lib/fastlane_core/globals.rb
1358
+ - fastlane_core/lib/fastlane_core/helper.rb
1359
+ - fastlane_core/lib/fastlane_core/ios_app_identifier_guesser.rb
1360
+ - fastlane_core/lib/fastlane_core/ipa_file_analyser.rb
1361
+ - fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
1362
+ - fastlane_core/lib/fastlane_core/itunes_transporter.rb
1363
+ - fastlane_core/lib/fastlane_core/keychain_importer.rb
1364
+ - fastlane_core/lib/fastlane_core/languages.rb
1365
+ - fastlane_core/lib/fastlane_core/module.rb
1366
+ - fastlane_core/lib/fastlane_core/pkg_file_analyser.rb
1367
+ - fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb
1368
+ - fastlane_core/lib/fastlane_core/print_table.rb
1369
+ - fastlane_core/lib/fastlane_core/project.rb
1370
+ - fastlane_core/lib/fastlane_core/provisioning_profile.rb
1371
+ - fastlane_core/lib/fastlane_core/string_filters.rb
1372
+ - fastlane_core/lib/fastlane_core/swag.rb
1373
+ - fastlane_core/lib/fastlane_core/tag_version.rb
1374
+ - fastlane_core/lib/fastlane_core/test_parser.rb
1375
+ - fastlane_core/lib/fastlane_core/ui/disable_colors.rb
1376
+ - fastlane_core/lib/fastlane_core/ui/errors.rb
1377
+ - fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb
1378
+ - fastlane_core/lib/fastlane_core/ui/errors/fastlane_crash.rb
1379
+ - fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb
1380
+ - fastlane_core/lib/fastlane_core/ui/errors/fastlane_exception.rb
1381
+ - fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb
1382
+ - fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb
1383
+ - fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb
1384
+ - fastlane_core/lib/fastlane_core/ui/implementations/shell.rb
1385
+ - fastlane_core/lib/fastlane_core/ui/interface.rb
1386
+ - fastlane_core/lib/fastlane_core/ui/ui.rb
1387
+ - fastlane_core/lib/fastlane_core/update_checker/changelog.rb
1388
+ - fastlane_core/lib/fastlane_core/update_checker/update_checker.rb
1389
+ - frameit/README.md
1390
+ - frameit/lib/assets/empty.png
1391
+ - frameit/lib/frameit.rb
1392
+ - frameit/lib/frameit/commands_generator.rb
1393
+ - frameit/lib/frameit/config_parser.rb
1394
+ - frameit/lib/frameit/dependency_checker.rb
1395
+ - frameit/lib/frameit/device_types.rb
1396
+ - frameit/lib/frameit/editor.rb
1397
+ - frameit/lib/frameit/frame_downloader.rb
1398
+ - frameit/lib/frameit/mac_editor.rb
1399
+ - frameit/lib/frameit/module.rb
1400
+ - frameit/lib/frameit/offsets.rb
1401
+ - frameit/lib/frameit/options.rb
1402
+ - frameit/lib/frameit/runner.rb
1403
+ - frameit/lib/frameit/screenshot.rb
1404
+ - frameit/lib/frameit/strings_parser.rb
1405
+ - frameit/lib/frameit/template_finder.rb
1406
+ - frameit/lib/frameit/trim_box.rb
1407
+ - gym/README.md
1408
+ - gym/lib/assets/GymfileTemplate
1409
+ - gym/lib/assets/GymfileTemplate.swift
1410
+ - gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
1411
+ - gym/lib/gym.rb
1412
+ - gym/lib/gym/code_signing_mapping.rb
1413
+ - gym/lib/gym/commands_generator.rb
1414
+ - gym/lib/gym/detect_values.rb
1415
+ - gym/lib/gym/error_handler.rb
1416
+ - gym/lib/gym/generators/README.md
1417
+ - gym/lib/gym/generators/build_command_generator.rb
1418
+ - gym/lib/gym/generators/package_command_generator.rb
1419
+ - gym/lib/gym/generators/package_command_generator_xcode7.rb
1420
+ - gym/lib/gym/manager.rb
1421
+ - gym/lib/gym/module.rb
1422
+ - gym/lib/gym/options.rb
1423
+ - gym/lib/gym/runner.rb
1424
+ - gym/lib/gym/xcode.rb
1425
+ - gym/lib/gym/xcodebuild_fixes/README.md
1426
+ - gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb
1427
+ - match/README.md
1428
+ - match/lib/assets/MatchfileTemplate
1429
+ - match/lib/assets/MatchfileTemplate.swift
1430
+ - match/lib/assets/READMETemplate.md
1431
+ - match/lib/match.rb
1432
+ - match/lib/match/change_password.rb
1433
+ - match/lib/match/commands_generator.rb
1434
+ - match/lib/match/encryption.rb
1435
+ - match/lib/match/encryption/interface.rb
1436
+ - match/lib/match/encryption/openssl.rb
1437
+ - match/lib/match/generator.rb
1438
+ - match/lib/match/migrate.rb
1439
+ - match/lib/match/module.rb
1440
+ - match/lib/match/nuke.rb
1441
+ - match/lib/match/options.rb
1442
+ - match/lib/match/runner.rb
1443
+ - match/lib/match/setup.rb
1444
+ - match/lib/match/spaceship_ensure.rb
1445
+ - match/lib/match/storage.rb
1446
+ - match/lib/match/storage/git_storage.rb
1447
+ - match/lib/match/storage/google_cloud_storage.rb
1448
+ - match/lib/match/storage/interface.rb
1449
+ - match/lib/match/table_printer.rb
1450
+ - match/lib/match/utils.rb
1451
+ - pem/README.md
1452
+ - pem/lib/pem.rb
1453
+ - pem/lib/pem/commands_generator.rb
1454
+ - pem/lib/pem/manager.rb
1455
+ - pem/lib/pem/module.rb
1456
+ - pem/lib/pem/options.rb
1457
+ - pilot/README.md
1458
+ - pilot/lib/pilot.rb
1459
+ - pilot/lib/pilot/build_manager.rb
1460
+ - pilot/lib/pilot/commands_generator.rb
1461
+ - pilot/lib/pilot/features.rb
1462
+ - pilot/lib/pilot/manager.rb
1463
+ - pilot/lib/pilot/module.rb
1464
+ - pilot/lib/pilot/options.rb
1465
+ - pilot/lib/pilot/tester_exporter.rb
1466
+ - pilot/lib/pilot/tester_importer.rb
1467
+ - pilot/lib/pilot/tester_manager.rb
1468
+ - pilot/lib/pilot/tester_util.rb
1469
+ - precheck/README.md
1470
+ - precheck/lib/assets/PrecheckfileTemplate
1471
+ - precheck/lib/assets/PrecheckfileTemplate.swift
1472
+ - precheck/lib/precheck.rb
1473
+ - precheck/lib/precheck/commands_generator.rb
1474
+ - precheck/lib/precheck/item_to_check.rb
1475
+ - precheck/lib/precheck/module.rb
1476
+ - precheck/lib/precheck/options.rb
1477
+ - precheck/lib/precheck/rule.rb
1478
+ - precheck/lib/precheck/rule_check_result.rb
1479
+ - precheck/lib/precheck/rule_processor.rb
1480
+ - precheck/lib/precheck/rules/abstract_text_match_rule.rb
1481
+ - precheck/lib/precheck/rules/all.rb
1482
+ - precheck/lib/precheck/rules/copyright_date_rule.rb
1483
+ - precheck/lib/precheck/rules/curse_words_rule.rb
1484
+ - precheck/lib/precheck/rules/custom_text_rule.rb
1485
+ - precheck/lib/precheck/rules/free_stuff_iap_rule.rb
1486
+ - precheck/lib/precheck/rules/future_functionality_rule.rb
1487
+ - precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb
1488
+ - precheck/lib/precheck/rules/other_platforms_rule.rb
1489
+ - precheck/lib/precheck/rules/placeholder_words_rule.rb
1490
+ - precheck/lib/precheck/rules/rules_data/curse_word_hashes/en_us.txt
1491
+ - precheck/lib/precheck/rules/test_words_rule.rb
1492
+ - precheck/lib/precheck/rules/unreachable_urls_rule.rb
1493
+ - precheck/lib/precheck/runner.rb
1494
+ - produce/README.md
1495
+ - produce/lib/produce.rb
1496
+ - produce/lib/produce/available_default_languages.rb
1497
+ - produce/lib/produce/cloud_container.rb
1498
+ - produce/lib/produce/commands_generator.rb
1499
+ - produce/lib/produce/developer_center.rb
1500
+ - produce/lib/produce/group.rb
1501
+ - produce/lib/produce/itunes_connect.rb
1502
+ - produce/lib/produce/manager.rb
1503
+ - produce/lib/produce/merchant.rb
1504
+ - produce/lib/produce/module.rb
1505
+ - produce/lib/produce/options.rb
1506
+ - produce/lib/produce/service.rb
1507
+ - scan/README.md
1508
+ - scan/lib/assets/ScanfileTemplate
1509
+ - scan/lib/assets/ScanfileTemplate.swift
1510
+ - scan/lib/scan.rb
1511
+ - scan/lib/scan/commands_generator.rb
1512
+ - scan/lib/scan/detect_values.rb
1513
+ - scan/lib/scan/error_handler.rb
1514
+ - scan/lib/scan/manager.rb
1515
+ - scan/lib/scan/module.rb
1516
+ - scan/lib/scan/options.rb
1517
+ - scan/lib/scan/runner.rb
1518
+ - scan/lib/scan/slack_poster.rb
1519
+ - scan/lib/scan/test_command_generator.rb
1520
+ - scan/lib/scan/test_result_parser.rb
1521
+ - scan/lib/scan/xcpretty_reporter_options_generator.rb
1522
+ - screengrab/README.md
1523
+ - screengrab/lib/assets/ScreengrabfileTemplate
1524
+ - screengrab/lib/assets/ScreengrabfileTemplate.swift
1525
+ - screengrab/lib/screengrab.rb
1526
+ - screengrab/lib/screengrab/android_environment.rb
1527
+ - screengrab/lib/screengrab/commands_generator.rb
1528
+ - screengrab/lib/screengrab/dependency_checker.rb
1529
+ - screengrab/lib/screengrab/detect_values.rb
1530
+ - screengrab/lib/screengrab/module.rb
1531
+ - screengrab/lib/screengrab/options.rb
1532
+ - screengrab/lib/screengrab/page.html.erb
1533
+ - screengrab/lib/screengrab/reports_generator.rb
1534
+ - screengrab/lib/screengrab/runner.rb
1535
+ - screengrab/lib/screengrab/setup.rb
1536
+ - sigh/README.md
1537
+ - sigh/lib/assets/resign.sh
1538
+ - sigh/lib/sigh.rb
1539
+ - sigh/lib/sigh/commands_generator.rb
1540
+ - sigh/lib/sigh/download_all.rb
1541
+ - sigh/lib/sigh/local_manage.rb
1542
+ - sigh/lib/sigh/manager.rb
1543
+ - sigh/lib/sigh/module.rb
1544
+ - sigh/lib/sigh/options.rb
1545
+ - sigh/lib/sigh/repair.rb
1546
+ - sigh/lib/sigh/resign.rb
1547
+ - sigh/lib/sigh/runner.rb
1548
+ - snapshot/README.md
1549
+ - snapshot/lib/assets/SnapfileTemplate
1550
+ - snapshot/lib/assets/SnapfileTemplate.swift
1551
+ - snapshot/lib/assets/SnapshotHelper.swift
1552
+ - snapshot/lib/assets/SnapshotHelperXcode8.swift
1553
+ - snapshot/lib/snapshot.rb
1554
+ - snapshot/lib/snapshot/collector.rb
1555
+ - snapshot/lib/snapshot/commands_generator.rb
1556
+ - snapshot/lib/snapshot/dependency_checker.rb
1557
+ - snapshot/lib/snapshot/detect_values.rb
1558
+ - snapshot/lib/snapshot/error_handler.rb
1559
+ - snapshot/lib/snapshot/fixes/README.md
1560
+ - snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb
1561
+ - snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb
1562
+ - snapshot/lib/snapshot/latest_os_version.rb
1563
+ - snapshot/lib/snapshot/module.rb
1564
+ - snapshot/lib/snapshot/options.rb
1565
+ - snapshot/lib/snapshot/page.html.erb
1566
+ - snapshot/lib/snapshot/reports_generator.rb
1567
+ - snapshot/lib/snapshot/reset_simulators.rb
1568
+ - snapshot/lib/snapshot/runner.rb
1569
+ - snapshot/lib/snapshot/screenshot_flatten.rb
1570
+ - snapshot/lib/snapshot/screenshot_rotate.rb
1571
+ - snapshot/lib/snapshot/setup.rb
1572
+ - snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb
1573
+ - snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb
1574
+ - snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb
1575
+ - snapshot/lib/snapshot/simulator_launchers/simulator_launcher_xcode_8.rb
1576
+ - snapshot/lib/snapshot/test_command_generator.rb
1577
+ - snapshot/lib/snapshot/test_command_generator_base.rb
1578
+ - snapshot/lib/snapshot/test_command_generator_xcode_8.rb
1579
+ - snapshot/lib/snapshot/update.rb
1580
+ - spaceship/README.md
1581
+ - spaceship/lib/assets/displayFamilies.json
1582
+ - spaceship/lib/assets/languageMapping.json
1583
+ - spaceship/lib/assets/languageMappingReadable.json
1584
+ - spaceship/lib/spaceship.rb
1585
+ - spaceship/lib/spaceship/babosa_fix.rb
1586
+ - spaceship/lib/spaceship/base.rb
1587
+ - spaceship/lib/spaceship/client.rb
1588
+ - spaceship/lib/spaceship/commands_generator.rb
1589
+ - spaceship/lib/spaceship/connect_api.rb
1590
+ - spaceship/lib/spaceship/connect_api/client.rb
1591
+ - spaceship/lib/spaceship/connect_api/model.rb
1592
+ - spaceship/lib/spaceship/connect_api/models/app.rb
1593
+ - spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb
1594
+ - spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb
1595
+ - spaceship/lib/spaceship/connect_api/models/beta_app_review_submission.rb
1596
+ - spaceship/lib/spaceship/connect_api/models/beta_build_localization.rb
1597
+ - spaceship/lib/spaceship/connect_api/models/beta_build_metric.rb
1598
+ - spaceship/lib/spaceship/connect_api/models/beta_group.rb
1599
+ - spaceship/lib/spaceship/connect_api/models/beta_tester.rb
1600
+ - spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb
1601
+ - spaceship/lib/spaceship/connect_api/models/build.rb
1602
+ - spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
1603
+ - spaceship/lib/spaceship/connect_api/models/build_delivery.rb
1604
+ - spaceship/lib/spaceship/connect_api/models/bundle_id.rb
1605
+ - spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb
1606
+ - spaceship/lib/spaceship/connect_api/models/certificate.rb
1607
+ - spaceship/lib/spaceship/connect_api/models/device.rb
1608
+ - spaceship/lib/spaceship/connect_api/models/pre_release_version.rb
1609
+ - spaceship/lib/spaceship/connect_api/models/profile.rb
1610
+ - spaceship/lib/spaceship/connect_api/models/user.rb
1611
+ - spaceship/lib/spaceship/connect_api/provisioning/client.rb
1612
+ - spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb
1613
+ - spaceship/lib/spaceship/connect_api/response.rb
1614
+ - spaceship/lib/spaceship/connect_api/testflight/client.rb
1615
+ - spaceship/lib/spaceship/connect_api/testflight/testflight.rb
1616
+ - spaceship/lib/spaceship/connect_api/token.rb
1617
+ - spaceship/lib/spaceship/connect_api/users/client.rb
1618
+ - spaceship/lib/spaceship/connect_api/users/users.rb
1619
+ - spaceship/lib/spaceship/du/du_client.rb
1620
+ - spaceship/lib/spaceship/du/upload_file.rb
1621
+ - spaceship/lib/spaceship/du/utilities.rb
1622
+ - spaceship/lib/spaceship/errors.rb
1623
+ - spaceship/lib/spaceship/globals.rb
1624
+ - spaceship/lib/spaceship/helper/net_http_generic_request.rb
1625
+ - spaceship/lib/spaceship/helper/plist_middleware.rb
1626
+ - spaceship/lib/spaceship/helper/rels_middleware.rb
1627
+ - spaceship/lib/spaceship/launcher.rb
1628
+ - spaceship/lib/spaceship/module.rb
1629
+ - spaceship/lib/spaceship/playground.rb
1630
+ - spaceship/lib/spaceship/portal/app.rb
1631
+ - spaceship/lib/spaceship/portal/app_group.rb
1632
+ - spaceship/lib/spaceship/portal/app_service.rb
1633
+ - spaceship/lib/spaceship/portal/certificate.rb
1634
+ - spaceship/lib/spaceship/portal/cloud_container.rb
1635
+ - spaceship/lib/spaceship/portal/device.rb
1636
+ - spaceship/lib/spaceship/portal/invite.rb
1637
+ - spaceship/lib/spaceship/portal/key.rb
1638
+ - spaceship/lib/spaceship/portal/legacy_wrapper.rb
1639
+ - spaceship/lib/spaceship/portal/merchant.rb
1640
+ - spaceship/lib/spaceship/portal/passbook.rb
1641
+ - spaceship/lib/spaceship/portal/person.rb
1642
+ - spaceship/lib/spaceship/portal/persons.rb
1643
+ - spaceship/lib/spaceship/portal/portal.rb
1644
+ - spaceship/lib/spaceship/portal/portal_base.rb
1645
+ - spaceship/lib/spaceship/portal/portal_client.rb
1646
+ - spaceship/lib/spaceship/portal/provisioning_profile.rb
1647
+ - spaceship/lib/spaceship/portal/provisioning_profile_template.rb
1648
+ - spaceship/lib/spaceship/portal/spaceship.rb
1649
+ - spaceship/lib/spaceship/portal/ui/select_team.rb
1650
+ - spaceship/lib/spaceship/portal/website_push.rb
1651
+ - spaceship/lib/spaceship/provider.rb
1652
+ - spaceship/lib/spaceship/spaceauth_runner.rb
1653
+ - spaceship/lib/spaceship/test_flight.rb
1654
+ - spaceship/lib/spaceship/test_flight/app_test_info.rb
1655
+ - spaceship/lib/spaceship/test_flight/base.rb
1656
+ - spaceship/lib/spaceship/test_flight/beta_review_info.rb
1657
+ - spaceship/lib/spaceship/test_flight/build.rb
1658
+ - spaceship/lib/spaceship/test_flight/build_trains.rb
1659
+ - spaceship/lib/spaceship/test_flight/client.rb
1660
+ - spaceship/lib/spaceship/test_flight/export_compliance.rb
1661
+ - spaceship/lib/spaceship/test_flight/group.rb
1662
+ - spaceship/lib/spaceship/test_flight/test_info.rb
1663
+ - spaceship/lib/spaceship/test_flight/tester.rb
1664
+ - spaceship/lib/spaceship/tunes/app_analytics.rb
1665
+ - spaceship/lib/spaceship/tunes/app_details.rb
1666
+ - spaceship/lib/spaceship/tunes/app_image.rb
1667
+ - spaceship/lib/spaceship/tunes/app_ratings.rb
1668
+ - spaceship/lib/spaceship/tunes/app_review.rb
1669
+ - spaceship/lib/spaceship/tunes/app_review_attachment.rb
1670
+ - spaceship/lib/spaceship/tunes/app_screenshot.rb
1671
+ - spaceship/lib/spaceship/tunes/app_status.rb
1672
+ - spaceship/lib/spaceship/tunes/app_submission.rb
1673
+ - spaceship/lib/spaceship/tunes/app_trailer.rb
1674
+ - spaceship/lib/spaceship/tunes/app_version.rb
1675
+ - spaceship/lib/spaceship/tunes/app_version_common.rb
1676
+ - spaceship/lib/spaceship/tunes/app_version_generated_promocodes.rb
1677
+ - spaceship/lib/spaceship/tunes/app_version_history.rb
1678
+ - spaceship/lib/spaceship/tunes/app_version_promocodes.rb
1679
+ - spaceship/lib/spaceship/tunes/app_version_ref.rb
1680
+ - spaceship/lib/spaceship/tunes/app_version_states_history.rb
1681
+ - spaceship/lib/spaceship/tunes/application.rb
1682
+ - spaceship/lib/spaceship/tunes/availability.rb
1683
+ - spaceship/lib/spaceship/tunes/b2b_user.rb
1684
+ - spaceship/lib/spaceship/tunes/build.rb
1685
+ - spaceship/lib/spaceship/tunes/build_details.rb
1686
+ - spaceship/lib/spaceship/tunes/build_train.rb
1687
+ - spaceship/lib/spaceship/tunes/developer_response.rb
1688
+ - spaceship/lib/spaceship/tunes/device_type.rb
1689
+ - spaceship/lib/spaceship/tunes/display_family.rb
1690
+ - spaceship/lib/spaceship/tunes/errors.rb
1691
+ - spaceship/lib/spaceship/tunes/iap.rb
1692
+ - spaceship/lib/spaceship/tunes/iap_detail.rb
1693
+ - spaceship/lib/spaceship/tunes/iap_families.rb
1694
+ - spaceship/lib/spaceship/tunes/iap_family_details.rb
1695
+ - spaceship/lib/spaceship/tunes/iap_family_list.rb
1696
+ - spaceship/lib/spaceship/tunes/iap_list.rb
1697
+ - spaceship/lib/spaceship/tunes/iap_status.rb
1698
+ - spaceship/lib/spaceship/tunes/iap_subscription_pricing_info.rb
1699
+ - spaceship/lib/spaceship/tunes/iap_subscription_pricing_tier.rb
1700
+ - spaceship/lib/spaceship/tunes/iap_type.rb
1701
+ - spaceship/lib/spaceship/tunes/language_converter.rb
1702
+ - spaceship/lib/spaceship/tunes/language_item.rb
1703
+ - spaceship/lib/spaceship/tunes/legacy_wrapper.rb
1704
+ - spaceship/lib/spaceship/tunes/member.rb
1705
+ - spaceship/lib/spaceship/tunes/members.rb
1706
+ - spaceship/lib/spaceship/tunes/pricing_info.rb
1707
+ - spaceship/lib/spaceship/tunes/pricing_tier.rb
1708
+ - spaceship/lib/spaceship/tunes/sandbox_tester.rb
1709
+ - spaceship/lib/spaceship/tunes/spaceship.rb
1710
+ - spaceship/lib/spaceship/tunes/territory.rb
1711
+ - spaceship/lib/spaceship/tunes/transit_app_file.rb
1712
+ - spaceship/lib/spaceship/tunes/tunes.rb
1713
+ - spaceship/lib/spaceship/tunes/tunes_base.rb
1714
+ - spaceship/lib/spaceship/tunes/tunes_client.rb
1715
+ - spaceship/lib/spaceship/tunes/user_detail.rb
1716
+ - spaceship/lib/spaceship/tunes/version_set.rb
1717
+ - spaceship/lib/spaceship/two_step_or_factor_client.rb
1718
+ - spaceship/lib/spaceship/ui.rb
1719
+ - supply/README.md
1720
+ - supply/lib/supply.rb
1721
+ - supply/lib/supply/apk_listing.rb
1722
+ - supply/lib/supply/client.rb
1723
+ - supply/lib/supply/commands_generator.rb
1724
+ - supply/lib/supply/languages.rb
1725
+ - supply/lib/supply/listing.rb
1726
+ - supply/lib/supply/options.rb
1727
+ - supply/lib/supply/reader.rb
1728
+ - supply/lib/supply/setup.rb
1729
+ - supply/lib/supply/uploader.rb
1730
+ homepage: https://fastlane.tools
1731
+ licenses:
1732
+ - MIT
1733
+ metadata:
1734
+ docs_url: https://docs.fastlane.tools
1735
+ post_install_message:
1736
+ rdoc_options: []
1737
+ require_paths:
1738
+ - credentials_manager/lib
1739
+ - pem/lib
1740
+ - snapshot/lib
1741
+ - frameit/lib
1742
+ - match/lib
1743
+ - fastlane_core/lib
1744
+ - deliver/lib
1745
+ - scan/lib
1746
+ - supply/lib
1747
+ - cert/lib
1748
+ - fastlane/lib
1749
+ - spaceship/lib
1750
+ - pilot/lib
1751
+ - gym/lib
1752
+ - precheck/lib
1753
+ - screengrab/lib
1754
+ - sigh/lib
1755
+ - produce/lib
1756
+ required_ruby_version: !ruby/object:Gem::Requirement
1757
+ requirements:
1758
+ - - ">="
1759
+ - !ruby/object:Gem::Version
1760
+ version: 2.0.0
1761
+ required_rubygems_version: !ruby/object:Gem::Requirement
1762
+ requirements:
1763
+ - - ">="
1764
+ - !ruby/object:Gem::Version
1765
+ version: '0'
1766
+ requirements: []
1767
+ rubygems_version: 3.0.4
1768
+ signing_key:
1769
+ specification_version: 4
1770
+ summary: The easiest way to automate beta deployments and releases for your iOS and
1771
+ Android apps
1772
+ test_files: []