fastlane 2.151.2 → 2.155.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +82 -82
  3. data/deliver/lib/deliver/app_screenshot.rb +1 -1
  4. data/deliver/lib/deliver/commands_generator.rb +7 -4
  5. data/deliver/lib/deliver/detect_values.rb +9 -3
  6. data/deliver/lib/deliver/download_screenshots.rb +1 -3
  7. data/deliver/lib/deliver/html_generator.rb +8 -1
  8. data/deliver/lib/deliver/options.rb +1 -1
  9. data/deliver/lib/deliver/runner.rb +5 -10
  10. data/deliver/lib/deliver/setup.rb +92 -3
  11. data/deliver/lib/deliver/submit_for_review.rb +4 -6
  12. data/deliver/lib/deliver/upload_metadata.rb +51 -30
  13. data/deliver/lib/deliver/upload_price_tier.rb +1 -3
  14. data/deliver/lib/deliver/upload_screenshots.rb +75 -44
  15. data/fastlane/lib/fastlane/{helper/.s3_client_helper.rb.swp → .erb_template_helper.rb.swp} +0 -0
  16. data/{deliver/lib/deliver/.commands_generator.rb.swp → fastlane/lib/fastlane/actions/.git_commit.rb.swp} +0 -0
  17. data/fastlane/lib/fastlane/actions/carthage.rb +7 -0
  18. data/fastlane/lib/fastlane/actions/create_keychain.rb +5 -1
  19. data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +3 -1
  20. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +21 -2
  21. data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +4 -4
  22. data/fastlane/lib/fastlane/actions/download_dsyms.rb +4 -2
  23. data/fastlane/lib/fastlane/actions/erb.rb +10 -2
  24. data/fastlane/lib/fastlane/actions/git_branch.rb +4 -1
  25. data/fastlane/lib/fastlane/actions/git_pull.rb +13 -2
  26. data/fastlane/lib/fastlane/actions/sync_code_signing.rb +5 -0
  27. data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +11 -3
  28. data/fastlane/lib/fastlane/runner.rb +3 -1
  29. data/fastlane/lib/fastlane/version.rb +1 -1
  30. data/fastlane/swift/Deliverfile.swift +1 -1
  31. data/fastlane/swift/DeliverfileProtocol.swift +3 -3
  32. data/fastlane/swift/Fastlane.swift +419 -192
  33. data/fastlane/swift/Gymfile.swift +1 -1
  34. data/fastlane/swift/GymfileProtocol.swift +1 -1
  35. data/fastlane/swift/Matchfile.swift +1 -1
  36. data/fastlane/swift/MatchfileProtocol.swift +10 -2
  37. data/fastlane/swift/Precheckfile.swift +1 -1
  38. data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
  39. data/fastlane/swift/Scanfile.swift +1 -1
  40. data/fastlane/swift/ScanfileProtocol.swift +1 -1
  41. data/fastlane/swift/Screengrabfile.swift +1 -1
  42. data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
  43. data/fastlane/swift/Snapshotfile.swift +1 -1
  44. data/fastlane/swift/SnapshotfileProtocol.swift +9 -1
  45. data/fastlane_core/lib/fastlane_core/device_manager.rb +25 -6
  46. data/frameit/lib/frameit/editor.rb +11 -6
  47. data/gym/lib/gym/detect_values.rb +6 -3
  48. data/gym/lib/gym/module.rb +30 -0
  49. data/gym/lib/gym/runner.rb +23 -18
  50. data/match/lib/match/generator.rb +6 -0
  51. data/match/lib/match/options.rb +16 -4
  52. data/match/lib/match/runner.rb +13 -5
  53. data/match/lib/match/spaceship_ensure.rb +7 -9
  54. data/match/lib/match/storage/git_storage.rb +16 -2
  55. data/match/lib/match/storage/google_cloud_storage.rb +1 -1
  56. data/pilot/lib/pilot/build_manager.rb +9 -0
  57. data/pilot/lib/pilot/options.rb +7 -1
  58. data/scan/lib/scan/runner.rb +19 -6
  59. data/sigh/lib/sigh/download_all.rb +42 -27
  60. data/sigh/lib/sigh/module.rb +26 -0
  61. data/sigh/lib/sigh/options.rb +2 -2
  62. data/sigh/lib/sigh/runner.rb +74 -33
  63. data/snapshot/lib/snapshot/options.rb +10 -0
  64. data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +2 -0
  65. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +5 -0
  66. data/snapshot/lib/snapshot/test_command_generator.rb +3 -2
  67. data/snapshot/lib/snapshot/test_command_generator_xcode_8.rb +4 -1
  68. data/spaceship/lib/spaceship/connect_api.rb +1 -0
  69. data/spaceship/lib/spaceship/connect_api/client.rb +5 -3
  70. data/spaceship/lib/spaceship/connect_api/model.rb +15 -1
  71. data/spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb +1 -0
  72. data/spaceship/lib/spaceship/connect_api/models/app.rb +61 -3
  73. data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +1 -0
  74. data/spaceship/lib/spaceship/connect_api/models/app_preview.rb +1 -0
  75. data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +44 -5
  76. data/spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb +1 -0
  77. data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +12 -0
  78. data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +1 -0
  79. data/spaceship/lib/spaceship/connect_api/models/app_store_version_release_request.rb +12 -0
  80. data/spaceship/lib/spaceship/connect_api/models/build.rb +1 -0
  81. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +17 -5
  82. data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +41 -7
  83. data/spaceship/lib/spaceship/connect_api/models/idfa_declaration.rb +1 -0
  84. data/spaceship/lib/spaceship/connect_api/models/profile.rb +31 -1
  85. data/spaceship/lib/spaceship/connect_api/provisioning/client.rb +46 -4
  86. data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +41 -0
  87. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +32 -1
  88. data/supply/lib/supply/client.rb +2 -1
  89. data/supply/lib/supply/options.rb +8 -1
  90. metadata +34 -61
  91. data/deliver/lib/deliver/.submit_for_review.rb.swp +0 -0
  92. data/frameit/lib/frameit/.editor.rb.swp +0 -0