fastlane 2.198.1 → 2.201.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +92 -92
  4. data/deliver/lib/deliver/app_screenshot.rb +7 -0
  5. data/deliver/lib/deliver/app_screenshot_iterator.rb +1 -1
  6. data/fastlane/lib/.DS_Store +0 -0
  7. data/fastlane/lib/fastlane/.DS_Store +0 -0
  8. data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
  9. data/fastlane/lib/fastlane/actions/download_dsyms.rb +26 -27
  10. data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +1 -1
  11. data/fastlane/lib/fastlane/actions/get_version_number.rb +1 -0
  12. data/fastlane/lib/fastlane/actions/trainer.rb +49 -0
  13. data/fastlane/lib/fastlane/actions/update_code_signing_settings.rb +18 -1
  14. data/fastlane/lib/fastlane/actions/xcversion.rb +18 -3
  15. data/fastlane/lib/fastlane/documentation/docs_generator.rb +17 -12
  16. data/fastlane/lib/fastlane/helper/xcodebuild_formatter_helper.rb +9 -0
  17. data/fastlane/lib/fastlane/tools.rb +2 -1
  18. data/fastlane/lib/fastlane/version.rb +1 -1
  19. data/fastlane/swift/Actions.swift +1 -1
  20. data/fastlane/swift/Appfile.swift +1 -1
  21. data/fastlane/swift/ArgumentProcessor.swift +1 -1
  22. data/fastlane/swift/ControlCommand.swift +1 -1
  23. data/fastlane/swift/Deliverfile.swift +2 -2
  24. data/fastlane/swift/DeliverfileProtocol.swift +2 -2
  25. data/fastlane/swift/Fastlane.swift +28 -15
  26. data/fastlane/swift/Gymfile.swift +2 -2
  27. data/fastlane/swift/GymfileProtocol.swift +2 -2
  28. data/fastlane/swift/LaneFileProtocol.swift +1 -1
  29. data/fastlane/swift/MainProcess.swift +1 -1
  30. data/fastlane/swift/Matchfile.swift +2 -2
  31. data/fastlane/swift/MatchfileProtocol.swift +2 -2
  32. data/fastlane/swift/OptionalConfigValue.swift +1 -1
  33. data/fastlane/swift/Plugins.swift +1 -1
  34. data/fastlane/swift/Precheckfile.swift +2 -2
  35. data/fastlane/swift/PrecheckfileProtocol.swift +2 -2
  36. data/fastlane/swift/RubyCommand.swift +1 -1
  37. data/fastlane/swift/RubyCommandable.swift +1 -1
  38. data/fastlane/swift/Runner.swift +4 -8
  39. data/fastlane/swift/RunnerArgument.swift +1 -1
  40. data/fastlane/swift/Scanfile.swift +2 -2
  41. data/fastlane/swift/ScanfileProtocol.swift +4 -4
  42. data/fastlane/swift/Screengrabfile.swift +2 -2
  43. data/fastlane/swift/ScreengrabfileProtocol.swift +2 -2
  44. data/fastlane/swift/Snapshotfile.swift +2 -2
  45. data/fastlane/swift/SnapshotfileProtocol.swift +2 -2
  46. data/fastlane/swift/SocketClient.swift +1 -1
  47. data/fastlane/swift/SocketClientDelegateProtocol.swift +1 -1
  48. data/fastlane/swift/SocketResponse.swift +1 -1
  49. data/fastlane/swift/formatting/Brewfile.lock.json +14 -14
  50. data/fastlane/swift/main.swift +1 -1
  51. data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +10 -5
  52. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +4 -1
  53. data/gym/lib/gym/generators/build_command_generator.rb +68 -22
  54. data/gym/lib/gym/options.rb +17 -5
  55. data/scan/lib/scan/options.rb +27 -7
  56. data/scan/lib/scan/runner.rb +107 -14
  57. data/scan/lib/scan/test_command_generator.rb +55 -5
  58. data/snapshot/lib/snapshot/options.rb +23 -7
  59. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +1 -1
  60. data/snapshot/lib/snapshot/test_command_generator.rb +37 -2
  61. data/spaceship/lib/spaceship/client.rb +35 -15
  62. data/spaceship/lib/spaceship/commands_generator.rb +1 -1
  63. data/spaceship/lib/spaceship/connect_api/models/app.rb +43 -0
  64. data/spaceship/lib/spaceship/connect_api/models/app_info.rb +1 -0
  65. data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +2 -0
  66. data/spaceship/lib/spaceship/connect_api/models/review_submission.rb +73 -0
  67. data/spaceship/lib/spaceship/connect_api/models/review_submission_item.rb +40 -0
  68. data/spaceship/lib/spaceship/connect_api/response.rb +13 -0
  69. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +83 -0
  70. data/spaceship/lib/spaceship/connect_api.rb +2 -0
  71. data/spaceship/lib/spaceship/globals.rb +9 -0
  72. data/spaceship/lib/spaceship/spaceauth_runner.rb +1 -1
  73. data/supply/lib/supply/options.rb +8 -0
  74. data/supply/lib/supply/uploader.rb +6 -2
  75. data/trainer/lib/.DS_Store +0 -0
  76. data/trainer/lib/assets/junit.xml.erb +20 -0
  77. data/trainer/lib/trainer/commands_generator.rb +51 -0
  78. data/trainer/lib/trainer/junit_generator.rb +31 -0
  79. data/trainer/lib/trainer/module.rb +10 -0
  80. data/trainer/lib/trainer/options.rb +55 -0
  81. data/trainer/lib/trainer/test_parser.rb +346 -0
  82. data/trainer/lib/trainer/xcresult.rb +403 -0
  83. data/trainer/lib/trainer.rb +7 -0
  84. metadata +39 -22
@@ -4,21 +4,18 @@ module Fastlane
4
4
  output_path ||= File.join(FastlaneCore::FastlaneFolder.path || '.', 'README.md')
5
5
 
6
6
  output = ["fastlane documentation"]
7
- output << "================"
7
+ output << "----"
8
+ output << ""
8
9
 
9
10
  output << "# Installation"
10
11
  output << ""
11
12
  output << "Make sure you have the latest version of the Xcode command line tools installed:"
12
13
  output << ""
13
- output << "```"
14
+ output << "```sh"
14
15
  output << "xcode-select --install"
15
16
  output << "```"
16
17
  output << ""
17
- output << "Install _fastlane_ using"
18
- output << "```"
19
- output << "[sudo] gem install fastlane -NV"
20
- output << "```"
21
- output << "or alternatively using `brew install fastlane`"
18
+ output << "For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)"
22
19
  output << ""
23
20
  output << "# Available Actions"
24
21
 
@@ -32,7 +29,10 @@ module Fastlane
32
29
  next
33
30
  end
34
31
 
35
- output << "## #{formatted_platform(platform)}" if platform
32
+ if platform
33
+ output << ""
34
+ output << "## #{formatted_platform(platform)}"
35
+ end
36
36
 
37
37
  lanes.each do |lane_name, lane|
38
38
  next if lane.is_private
@@ -45,8 +45,10 @@ module Fastlane
45
45
  end
46
46
 
47
47
  output << "This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run."
48
- output << "More information about fastlane can be found on [fastlane.tools](https://fastlane.tools)."
49
- output << "The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools)."
48
+ output << ""
49
+ output << "More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools)."
50
+ output << ""
51
+ output << "The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools)."
50
52
  output << ""
51
53
 
52
54
  begin
@@ -78,10 +80,13 @@ module Fastlane
78
80
  full_name = [platform, lane].reject(&:nil?).join(' ')
79
81
 
80
82
  output = []
83
+ output << ""
81
84
  output << "### #{full_name}"
85
+ output << ""
86
+ output << "```sh"
87
+ output << "[bundle exec] fastlane #{full_name}"
82
88
  output << "```"
83
- output << "fastlane #{full_name}"
84
- output << "```"
89
+ output << ""
85
90
  output << description
86
91
  output
87
92
  end
@@ -0,0 +1,9 @@
1
+ module Fastlane
2
+ module Helper
3
+ class XcodebuildFormatterHelper
4
+ def self.xcbeautify_installed?
5
+ return `which xcbeautify`.include?("xcbeautify")
6
+ end
7
+ end
8
+ end
9
+ end
@@ -15,7 +15,8 @@ module Fastlane
15
15
  :match,
16
16
  :scan,
17
17
  :gym,
18
- :precheck
18
+ :precheck,
19
+ :trainer
19
20
  ]
20
21
 
21
22
  # a list of all the config files we currently expect
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.198.1'.freeze
2
+ VERSION = '2.201.0.rc2'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  RUBOCOP_REQUIREMENT = '1.12.1'.freeze
@@ -1,5 +1,5 @@
1
1
  // Actions.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This autogenerated file will be overwritten or replaced when running "fastlane generate_swift"
5
5
  //
@@ -1,5 +1,5 @@
1
1
  // Appfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  var appIdentifier: String { return "" } // The bundle identifier of your app
5
5
  var appleID: String { return "" } // Your Apple email address
@@ -1,5 +1,5 @@
1
1
  // ArgumentProcessor.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // ControlCommand.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Deliverfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -17,4 +17,4 @@ public class Deliverfile: DeliverfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.198.1
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // DeliverfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol DeliverfileProtocol: class {
5
5
  /// Path to your App Store Connect API Key JSON file (https://docs.fastlane.tools/app-store-connect-api/#using-fastlane-api-key-json-file)
@@ -260,4 +260,4 @@ public extension DeliverfileProtocol {
260
260
 
261
261
  // Please don't remove the lines below
262
262
  // They are used to detect outdated files
263
- // FastlaneRunnerAPIVersion [0.9.88]
263
+ // FastlaneRunnerAPIVersion [0.9.90]
@@ -1,5 +1,5 @@
1
1
  // Fastlane.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  import Foundation
5
5
  /**
@@ -4323,7 +4323,7 @@ public func ensureNoDebugCode(text: String,
4323
4323
 
4324
4324
  If building your app requires a specific version of Xcode, you can invoke this command before using gym.
4325
4325
  For example, to ensure that a beta version of Xcode is not accidentally selected to build, which would make uploading to TestFlight fail.
4326
- You can either manually provide a specific version using `version: ` or you make use of the `.xcode-version` file.
4326
+ You can either manually provide a specific version using `version:` or you make use of the `.xcode-version` file.
4327
4327
  Using the `strict` parameter, you can either verify the full set of version numbers strictly (i.e. `11.3.1`) or only a subset of them (i.e. `11.3` or `11`).
4328
4328
  */
4329
4329
  public func ensureXcodeVersion(version: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -8536,8 +8536,8 @@ public func rubyVersion() {
8536
8536
  - project: Path to the project file
8537
8537
  - packagePath: Path to the Swift Package
8538
8538
  - scheme: The project's scheme. Make sure it's marked as `Shared`
8539
- - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6')
8540
- - devices: Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air'])
8539
+ - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6' or 'iPhone SE (2nd generation) (14.5)')
8540
+ - devices: Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air', 'iPhone SE (2nd generation) (14.5)'])
8541
8541
  - skipDetectDevices: Should skip auto detecting of devices if none were specified
8542
8542
  - ensureDevicesFound: Should fail if devices not found
8543
8543
  - forceQuitSimulator: Enabling this option will automatically killall Simulator processes before the run
@@ -8941,8 +8941,8 @@ public func say(text: [String],
8941
8941
  - project: Path to the project file
8942
8942
  - packagePath: Path to the Swift Package
8943
8943
  - scheme: The project's scheme. Make sure it's marked as `Shared`
8944
- - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6')
8945
- - devices: Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air'])
8944
+ - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6' or 'iPhone SE (2nd generation) (14.5)')
8945
+ - devices: Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air', 'iPhone SE (2nd generation) (14.5)'])
8946
8946
  - skipDetectDevices: Should skip auto detecting of devices if none were specified
8947
8947
  - ensureDevicesFound: Should fail if devices not found
8948
8948
  - forceQuitSimulator: Enabling this option will automatically killall Simulator processes before the run
@@ -10708,6 +10708,7 @@ public func ssh(username: String,
10708
10708
  - skipUploadImages: Whether to skip uploading images, screenshots not included
10709
10709
  - skipUploadScreenshots: Whether to skip uploading SCREENSHOTS
10710
10710
  - trackPromoteTo: The track to promote to. The default available tracks are: production, beta, alpha, internal
10711
+ - trackPromoteReleaseStatus: Promoted track release status (used when promoting a track) - valid values are completed, draft, halted, inProgress
10711
10712
  - validateOnly: Only validate changes with Google Play rather than actually publish
10712
10713
  - mapping: Path to the mapping file to upload (mapping.txt or native-debug-symbols.zip alike)
10713
10714
  - mappingPaths: An array of paths to mapping files to upload (mapping.txt or native-debug-symbols.zip alike)
@@ -10749,6 +10750,7 @@ public func supply(packageName: String,
10749
10750
  skipUploadImages: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10750
10751
  skipUploadScreenshots: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10751
10752
  trackPromoteTo: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10753
+ trackPromoteReleaseStatus: String = "completed",
10752
10754
  validateOnly: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10753
10755
  mapping: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10754
10756
  mappingPaths: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
@@ -10788,6 +10790,7 @@ public func supply(packageName: String,
10788
10790
  let skipUploadImagesArg = skipUploadImages.asRubyArgument(name: "skip_upload_images", type: nil)
10789
10791
  let skipUploadScreenshotsArg = skipUploadScreenshots.asRubyArgument(name: "skip_upload_screenshots", type: nil)
10790
10792
  let trackPromoteToArg = trackPromoteTo.asRubyArgument(name: "track_promote_to", type: nil)
10793
+ let trackPromoteReleaseStatusArg = RubyCommand.Argument(name: "track_promote_release_status", value: trackPromoteReleaseStatus, type: nil)
10791
10794
  let validateOnlyArg = validateOnly.asRubyArgument(name: "validate_only", type: nil)
10792
10795
  let mappingArg = mapping.asRubyArgument(name: "mapping", type: nil)
10793
10796
  let mappingPathsArg = mappingPaths.asRubyArgument(name: "mapping_paths", type: nil)
@@ -10826,6 +10829,7 @@ public func supply(packageName: String,
10826
10829
  skipUploadImagesArg,
10827
10830
  skipUploadScreenshotsArg,
10828
10831
  trackPromoteToArg,
10832
+ trackPromoteReleaseStatusArg,
10829
10833
  validateOnlyArg,
10830
10834
  mappingArg,
10831
10835
  mappingPathsArg,
@@ -11549,6 +11553,7 @@ public func updateAppIdentifier(xcodeproj: String,
11549
11553
  - targets: Specify targets you want to toggle the signing mech. (default to all targets)
11550
11554
  - buildConfigurations: Specify build_configurations you want to toggle the signing mech. (default to all configurations)
11551
11555
  - codeSignIdentity: Code signing identity type (iPhone Developer, iPhone Distribution)
11556
+ - entitlementsFilePath: Path to your entitlements file
11552
11557
  - profileName: Provisioning profile name to use for code signing
11553
11558
  - profileUuid: Provisioning profile UUID to use for code signing
11554
11559
  - bundleIdentifier: Application Product Bundle Identifier
@@ -11563,6 +11568,7 @@ public func updateCodeSigningSettings(path: String,
11563
11568
  targets: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
11564
11569
  buildConfigurations: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
11565
11570
  codeSignIdentity: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11571
+ entitlementsFilePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11566
11572
  profileName: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11567
11573
  profileUuid: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11568
11574
  bundleIdentifier: OptionalConfigValue<String?> = .fastlaneDefault(nil))
@@ -11573,6 +11579,7 @@ public func updateCodeSigningSettings(path: String,
11573
11579
  let targetsArg = targets.asRubyArgument(name: "targets", type: nil)
11574
11580
  let buildConfigurationsArg = buildConfigurations.asRubyArgument(name: "build_configurations", type: nil)
11575
11581
  let codeSignIdentityArg = codeSignIdentity.asRubyArgument(name: "code_sign_identity", type: nil)
11582
+ let entitlementsFilePathArg = entitlementsFilePath.asRubyArgument(name: "entitlements_file_path", type: nil)
11576
11583
  let profileNameArg = profileName.asRubyArgument(name: "profile_name", type: nil)
11577
11584
  let profileUuidArg = profileUuid.asRubyArgument(name: "profile_uuid", type: nil)
11578
11585
  let bundleIdentifierArg = bundleIdentifier.asRubyArgument(name: "bundle_identifier", type: nil)
@@ -11582,6 +11589,7 @@ public func updateCodeSigningSettings(path: String,
11582
11589
  targetsArg,
11583
11590
  buildConfigurationsArg,
11584
11591
  codeSignIdentityArg,
11592
+ entitlementsFilePathArg,
11585
11593
  profileNameArg,
11586
11594
  profileUuidArg,
11587
11595
  bundleIdentifierArg]
@@ -12348,6 +12356,7 @@ public func uploadToAppStore(apiKeyPath: OptionalConfigValue<String?> = .fastlan
12348
12356
  - skipUploadImages: Whether to skip uploading images, screenshots not included
12349
12357
  - skipUploadScreenshots: Whether to skip uploading SCREENSHOTS
12350
12358
  - trackPromoteTo: The track to promote to. The default available tracks are: production, beta, alpha, internal
12359
+ - trackPromoteReleaseStatus: Promoted track release status (used when promoting a track) - valid values are completed, draft, halted, inProgress
12351
12360
  - validateOnly: Only validate changes with Google Play rather than actually publish
12352
12361
  - mapping: Path to the mapping file to upload (mapping.txt or native-debug-symbols.zip alike)
12353
12362
  - mappingPaths: An array of paths to mapping files to upload (mapping.txt or native-debug-symbols.zip alike)
@@ -12389,6 +12398,7 @@ public func uploadToPlayStore(packageName: String,
12389
12398
  skipUploadImages: OptionalConfigValue<Bool> = .fastlaneDefault(false),
12390
12399
  skipUploadScreenshots: OptionalConfigValue<Bool> = .fastlaneDefault(false),
12391
12400
  trackPromoteTo: OptionalConfigValue<String?> = .fastlaneDefault(nil),
12401
+ trackPromoteReleaseStatus: String = "completed",
12392
12402
  validateOnly: OptionalConfigValue<Bool> = .fastlaneDefault(false),
12393
12403
  mapping: OptionalConfigValue<String?> = .fastlaneDefault(nil),
12394
12404
  mappingPaths: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
@@ -12428,6 +12438,7 @@ public func uploadToPlayStore(packageName: String,
12428
12438
  let skipUploadImagesArg = skipUploadImages.asRubyArgument(name: "skip_upload_images", type: nil)
12429
12439
  let skipUploadScreenshotsArg = skipUploadScreenshots.asRubyArgument(name: "skip_upload_screenshots", type: nil)
12430
12440
  let trackPromoteToArg = trackPromoteTo.asRubyArgument(name: "track_promote_to", type: nil)
12441
+ let trackPromoteReleaseStatusArg = RubyCommand.Argument(name: "track_promote_release_status", value: trackPromoteReleaseStatus, type: nil)
12431
12442
  let validateOnlyArg = validateOnly.asRubyArgument(name: "validate_only", type: nil)
12432
12443
  let mappingArg = mapping.asRubyArgument(name: "mapping", type: nil)
12433
12444
  let mappingPathsArg = mappingPaths.asRubyArgument(name: "mapping_paths", type: nil)
@@ -12466,6 +12477,7 @@ public func uploadToPlayStore(packageName: String,
12466
12477
  skipUploadImagesArg,
12467
12478
  skipUploadScreenshotsArg,
12468
12479
  trackPromoteToArg,
12480
+ trackPromoteReleaseStatusArg,
12469
12481
  validateOnlyArg,
12470
12482
  mappingArg,
12471
12483
  mappingPathsArg,
@@ -13080,7 +13092,7 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
13080
13092
  coverallsServiceJobId: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13081
13093
  coverallsRepoToken: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13082
13094
  xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13083
- ideFoundationPath: String = "/Applications/Xcode-13.1.0.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
13095
+ ideFoundationPath: String = "/Applications/Xcode-13.2.1.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
13084
13096
  legacySupport: OptionalConfigValue<Bool> = .fastlaneDefault(false))
13085
13097
  {
13086
13098
  let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
@@ -13174,6 +13186,7 @@ public func xctool() {
13174
13186
  - parameter version: The version of Xcode to select specified as a Gem::Version requirement string (e.g. '~> 7.1.0')
13175
13187
 
13176
13188
  Finds and selects a version of an installed Xcode that best matches the provided [`Gem::Version` requirement specifier](http://www.rubydoc.info/github/rubygems/rubygems/Gem/Version)
13189
+ You can either manually provide a specific version using `version:` or you make use of the `.xcode-version` file.
13177
13190
  */
13178
13191
  public func xcversion(version: String) {
13179
13192
  let versionArg = RubyCommand.Argument(name: "version", value: version, type: nil)
@@ -13272,14 +13285,14 @@ func parseInt(fromString: String, function: String = #function) -> Int {
13272
13285
  return NSString(string: fromString.trimmingCharacters(in: .punctuationCharacters)).integerValue
13273
13286
  }
13274
13287
 
13275
- public let deliverfile = Deliverfile()
13276
- public let gymfile = Gymfile()
13277
- public let matchfile = Matchfile()
13278
- public let precheckfile = Precheckfile()
13279
- public let scanfile = Scanfile()
13280
- public let screengrabfile = Screengrabfile()
13281
- public let snapshotfile = Snapshotfile()
13288
+ public let deliverfile: Deliverfile = .init()
13289
+ public let gymfile: Gymfile = .init()
13290
+ public let matchfile: Matchfile = .init()
13291
+ public let precheckfile: Precheckfile = .init()
13292
+ public let scanfile: Scanfile = .init()
13293
+ public let screengrabfile: Screengrabfile = .init()
13294
+ public let snapshotfile: Snapshotfile = .init()
13282
13295
 
13283
13296
  // Please don't remove the lines below
13284
13297
  // They are used to detect outdated files
13285
- // FastlaneRunnerAPIVersion [0.9.141]
13298
+ // FastlaneRunnerAPIVersion [0.9.143]
@@ -1,5 +1,5 @@
1
1
  // Gymfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -17,4 +17,4 @@ public class Gymfile: GymfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.198.1
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // GymfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol GymfileProtocol: class {
5
5
  /// Path to the workspace file
@@ -200,4 +200,4 @@ public extension GymfileProtocol {
200
200
 
201
201
  // Please don't remove the lines below
202
202
  // They are used to detect outdated files
203
- // FastlaneRunnerAPIVersion [0.9.91]
203
+ // FastlaneRunnerAPIVersion [0.9.93]
@@ -1,5 +1,5 @@
1
1
  // LaneFileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // MainProcess.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Matchfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -17,4 +17,4 @@ public class Matchfile: MatchfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.198.1
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // MatchfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol MatchfileProtocol: class {
5
5
  /// Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution
@@ -192,4 +192,4 @@ public extension MatchfileProtocol {
192
192
 
193
193
  // Please don't remove the lines below
194
194
  // They are used to detect outdated files
195
- // FastlaneRunnerAPIVersion [0.9.85]
195
+ // FastlaneRunnerAPIVersion [0.9.87]
@@ -1,5 +1,5 @@
1
1
  // OptionalConfigValue.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Plugins.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This autogenerated file will be overwritten or replaced when installing/updating plugins or running "fastlane generate_swift"
5
5
  //
@@ -1,5 +1,5 @@
1
1
  // Precheckfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -17,4 +17,4 @@ public class Precheckfile: PrecheckfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.198.1
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // PrecheckfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol PrecheckfileProtocol: class {
5
5
  /// Path to your App Store Connect API Key JSON file (https://docs.fastlane.tools/app-store-connect-api/#using-fastlane-api-key-json-file)
@@ -52,4 +52,4 @@ public extension PrecheckfileProtocol {
52
52
 
53
53
  // Please don't remove the lines below
54
54
  // They are used to detect outdated files
55
- // FastlaneRunnerAPIVersion [0.9.84]
55
+ // FastlaneRunnerAPIVersion [0.9.86]
@@ -1,5 +1,5 @@
1
1
  // RubyCommand.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // RubyCommandable.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Runner.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -10,13 +10,9 @@
10
10
 
11
11
  import Foundation
12
12
 
13
- let logger: Logger = {
14
- Logger()
15
- }()
13
+ let logger: Logger = .init()
16
14
 
17
- let runner: Runner = {
18
- Runner()
19
- }()
15
+ let runner: Runner = .init()
20
16
 
21
17
  func desc(_: String) {
22
18
  // no-op, this is handled in fastlane/lane_list.rb
@@ -71,7 +67,7 @@ class Runner {
71
67
 
72
68
  let runLoop = RunLoop.current
73
69
  let timeoutDate = Date(timeInterval: TimeInterval(timeout), since: Date())
74
- var fulfilled: Bool = false
70
+ var fulfilled = false
75
71
  let _expression = memoizedClosure(expression)
76
72
  repeat {
77
73
  do {
@@ -1,5 +1,5 @@
1
1
  // RunnerArgument.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Scanfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -17,4 +17,4 @@ public class Scanfile: ScanfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.198.1
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // ScanfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol ScanfileProtocol: class {
5
5
  /// Path to the workspace file
@@ -14,10 +14,10 @@ public protocol ScanfileProtocol: class {
14
14
  /// The project's scheme. Make sure it's marked as `Shared`
15
15
  var scheme: String? { get }
16
16
 
17
- /// The name of the simulator type you want to run tests on (e.g. 'iPhone 6')
17
+ /// The name of the simulator type you want to run tests on (e.g. 'iPhone 6' or 'iPhone SE (2nd generation) (14.5)')
18
18
  var device: String? { get }
19
19
 
20
- /// Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air'])
20
+ /// Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air', 'iPhone SE (2nd generation) (14.5)'])
21
21
  var devices: [String]? { get }
22
22
 
23
23
  /// Should skip auto detecting of devices if none were specified
@@ -296,4 +296,4 @@ public extension ScanfileProtocol {
296
296
 
297
297
  // Please don't remove the lines below
298
298
  // They are used to detect outdated files
299
- // FastlaneRunnerAPIVersion [0.9.96]
299
+ // FastlaneRunnerAPIVersion [0.9.98]
@@ -1,5 +1,5 @@
1
1
  // Screengrabfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -17,4 +17,4 @@ public class Screengrabfile: ScreengrabfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.198.1
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // ScreengrabfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol ScreengrabfileProtocol: class {
5
5
  /// Path to the root of your Android SDK installation, e.g. ~/tools/android-sdk-macosx
@@ -96,4 +96,4 @@ public extension ScreengrabfileProtocol {
96
96
 
97
97
  // Please don't remove the lines below
98
98
  // They are used to detect outdated files
99
- // FastlaneRunnerAPIVersion [0.9.86]
99
+ // FastlaneRunnerAPIVersion [0.9.88]
@@ -1,5 +1,5 @@
1
1
  // Snapshotfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -17,4 +17,4 @@ public class Snapshotfile: SnapshotfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.198.1
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // SnapshotfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol SnapshotfileProtocol: class {
5
5
  /// Path the workspace file
@@ -200,4 +200,4 @@ public extension SnapshotfileProtocol {
200
200
 
201
201
  // Please don't remove the lines below
202
202
  // They are used to detect outdated files
203
- // FastlaneRunnerAPIVersion [0.9.80]
203
+ // FastlaneRunnerAPIVersion [0.9.82]
@@ -1,5 +1,5 @@
1
1
  // SocketClient.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // SocketClientDelegateProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // SocketResponse.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **