fastlane 2.128.1 → 2.133.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +72 -72
  3. data/cert/lib/cert/module.rb +2 -0
  4. data/cert/lib/cert/options.rb +6 -0
  5. data/cert/lib/cert/runner.rb +17 -11
  6. data/deliver/lib/deliver/submit_for_review.rb +1 -1
  7. data/fastlane/lib/fastlane.rb +4 -1
  8. data/fastlane/lib/fastlane/actions/.hockey.rb.swp +0 -0
  9. data/fastlane/lib/fastlane/actions/actions_helper.rb +4 -0
  10. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +11 -3
  11. data/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +1 -1
  12. data/fastlane/lib/fastlane/actions/automatic_code_signing.rb +1 -1
  13. data/fastlane/lib/fastlane/actions/carthage.rb +4 -3
  14. data/fastlane/lib/fastlane/actions/commit_github_file.rb +1 -1
  15. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +1 -1
  16. data/fastlane/lib/fastlane/actions/danger.rb +7 -0
  17. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +23 -4
  18. data/fastlane/lib/fastlane/actions/download_dsyms.rb +35 -9
  19. data/fastlane/lib/fastlane/actions/ensure_env_vars.rb +58 -0
  20. data/fastlane/lib/fastlane/actions/get_version_number.rb +21 -2
  21. data/fastlane/lib/fastlane/actions/github_api.rb +1 -1
  22. data/fastlane/lib/fastlane/actions/gradle.rb +37 -8
  23. data/fastlane/lib/fastlane/actions/import_from_git.rb +1 -1
  24. data/fastlane/lib/fastlane/actions/onesignal.rb +59 -29
  25. data/fastlane/lib/fastlane/actions/pod_push.rb +29 -10
  26. data/fastlane/lib/fastlane/actions/puts.rb +1 -1
  27. data/fastlane/lib/fastlane/actions/register_devices.rb +38 -22
  28. data/fastlane/lib/fastlane/actions/resign.rb +2 -2
  29. data/fastlane/lib/fastlane/actions/slather.rb +1 -0
  30. data/fastlane/lib/fastlane/actions/sonar.rb +18 -0
  31. data/fastlane/lib/fastlane/actions/update_fastlane.rb +1 -1
  32. data/fastlane/lib/fastlane/commands_generator.rb +17 -1
  33. data/fastlane/lib/fastlane/fast_file.rb +7 -2
  34. data/fastlane/lib/fastlane/helper/adb_helper.rb +5 -0
  35. data/fastlane/lib/fastlane/helper/crashlytics_helper.rb +12 -6
  36. data/fastlane/lib/fastlane/plugins/plugin_manager.rb +2 -0
  37. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +3 -0
  38. data/fastlane/lib/fastlane/setup/setup_android.rb +1 -1
  39. data/fastlane/lib/fastlane/swift_fastlane_api_generator.rb +126 -34
  40. data/fastlane/lib/fastlane/swift_fastlane_function.rb +82 -9
  41. data/fastlane/lib/fastlane/swift_runner_upgrader.rb +4 -0
  42. data/fastlane/lib/fastlane/version.rb +1 -1
  43. data/fastlane/swift/Actions.swift +15 -0
  44. data/fastlane/swift/Deliverfile.swift +1 -1
  45. data/fastlane/swift/DeliverfileProtocol.swift +121 -1
  46. data/fastlane/swift/Fastlane.swift +4164 -291
  47. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +9 -0
  48. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  49. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  50. data/fastlane/swift/Gymfile.swift +1 -1
  51. data/fastlane/swift/GymfileProtocol.swift +93 -11
  52. data/fastlane/swift/Matchfile.swift +1 -1
  53. data/fastlane/swift/MatchfileProtocol.swift +65 -1
  54. data/fastlane/swift/Plugins.swift +15 -0
  55. data/fastlane/swift/Precheckfile.swift +1 -1
  56. data/fastlane/swift/PrecheckfileProtocol.swift +15 -2
  57. data/fastlane/swift/Scanfile.swift +1 -1
  58. data/fastlane/swift/ScanfileProtocol.swift +111 -3
  59. data/fastlane/swift/Screengrabfile.swift +1 -1
  60. data/fastlane/swift/ScreengrabfileProtocol.swift +39 -2
  61. data/fastlane/swift/Snapshotfile.swift +1 -1
  62. data/fastlane/swift/SnapshotfileProtocol.swift +71 -1
  63. data/fastlane/swift/upgrade_manifest.json +1 -1
  64. data/fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb +1 -1
  65. data/fastlane_core/lib/fastlane_core/command_executor.rb +1 -1
  66. data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +1 -1
  67. data/fastlane_core/lib/fastlane_core/helper.rb +1 -1
  68. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +1 -3
  69. data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +3 -2
  70. data/frameit/lib/frameit/editor.rb +1 -1
  71. data/frameit/lib/frameit/screenshot.rb +4 -0
  72. data/gym/lib/gym/.runner.rb.swp +0 -0
  73. data/gym/lib/gym/generators/build_command_generator.rb +5 -1
  74. data/gym/lib/gym/options.rb +17 -17
  75. data/gym/lib/gym/runner.rb +33 -5
  76. data/match/lib/match/generator.rb +1 -0
  77. data/match/lib/match/importer.rb +1 -1
  78. data/match/lib/match/module.rb +2 -0
  79. data/match/lib/match/nuke.rb +6 -6
  80. data/match/lib/match/options.rb +17 -0
  81. data/match/lib/match/runner.rb +12 -8
  82. data/match/lib/match/storage/git_storage.rb +8 -2
  83. data/match/lib/match/storage/google_cloud_storage.rb +85 -33
  84. data/match/lib/match/storage/interface.rb +1 -1
  85. data/produce/lib/produce/service.rb +7 -1
  86. data/scan/lib/scan/options.rb +1 -1
  87. data/scan/lib/scan/runner.rb +1 -1
  88. data/sigh/lib/sigh/download_all.rb +48 -8
  89. data/sigh/lib/sigh/runner.rb +13 -5
  90. data/snapshot/lib/assets/SnapshotHelper.swift +3 -3
  91. data/snapshot/lib/snapshot/commands_generator.rb +2 -2
  92. data/snapshot/lib/snapshot/options.rb +5 -0
  93. data/snapshot/lib/snapshot/reports_generator.rb +3 -0
  94. data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +2 -0
  95. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +1 -1
  96. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +16 -1
  97. data/snapshot/lib/snapshot/update.rb +4 -2
  98. data/spaceship/lib/spaceship/client.rb +1 -1
  99. data/spaceship/lib/spaceship/connect_api/models/app.rb +6 -6
  100. data/spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb +1 -0
  101. data/spaceship/lib/spaceship/connect_api/models/build.rb +3 -3
  102. data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +1 -1
  103. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +1 -1
  104. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +1 -1
  105. data/spaceship/lib/spaceship/connect_api/models/device.rb +1 -1
  106. data/spaceship/lib/spaceship/connect_api/models/profile.rb +1 -1
  107. data/spaceship/lib/spaceship/du/du_client.rb +4 -0
  108. data/spaceship/lib/spaceship/portal/.certificate.rb.swp +0 -0
  109. data/spaceship/lib/spaceship/portal/certificate.rb +15 -1
  110. data/spaceship/lib/spaceship/portal/provisioning_profile.rb +1 -1
  111. data/spaceship/lib/spaceship/spaceauth_runner.rb +1 -1
  112. data/spaceship/lib/spaceship/test_flight/tester.rb +1 -1
  113. data/spaceship/lib/spaceship/tunes/app_version.rb +4 -0
  114. data/spaceship/lib/spaceship/tunes/application.rb +4 -0
  115. data/spaceship/lib/spaceship/tunes/availability.rb +40 -8
  116. data/spaceship/lib/spaceship/tunes/b2b_organization.rb +50 -0
  117. data/spaceship/lib/spaceship/tunes/build_details.rb +160 -18
  118. data/spaceship/lib/spaceship/tunes/display_family.rb +3 -3
  119. data/spaceship/lib/spaceship/tunes/iap.rb +2 -0
  120. data/spaceship/lib/spaceship/tunes/iap_detail.rb +17 -0
  121. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +10 -2
  122. data/spaceship/lib/spaceship/tunes/tunes_client.rb +63 -2
  123. data/supply/lib/supply/client.rb +1 -1
  124. metadata +54 -47
@@ -9,12 +9,20 @@ module Spaceship
9
9
  # @return (String) the family name
10
10
  attr_accessor :name
11
11
 
12
- # @return (Intger) the Family Id
12
+ # @return (Intger) the family id
13
13
  attr_accessor :family_id
14
14
 
15
+ # @return (Array) all linked in-app purchases of this family
16
+ attr_accessor :linked_iaps
17
+
18
+ # @return (Intger) amount of linked in-app purchases of this family (read-only)
19
+ attr_accessor :iap_count
20
+
15
21
  attr_mapping({
16
22
  'id' => :family_id,
17
- 'name.value' => :name
23
+ 'name.value' => :name,
24
+ 'activeAddOns' => :linked_iaps,
25
+ 'totalActiveAddOns' => :iap_count
18
26
  })
19
27
 
20
28
  def versions=(value = {})
@@ -352,6 +352,31 @@ module Spaceship
352
352
  parse_response(r, 'data')
353
353
  end
354
354
 
355
+ def post_resolution_center(app_id, platform, thread_id, version_id, version_number, from, message_body)
356
+ r = request(:post) do |req|
357
+ req.url("ra/apps/#{app_id}/platforms/#{platform}/resolutionCenter")
358
+ req.body = {
359
+ appNotes: {
360
+ threads: [{
361
+ id: thread_id,
362
+ versionId: version_id,
363
+ version: version_number,
364
+ messages: [{
365
+ from: from,
366
+ date: DateTime.now.strftime('%Q'),
367
+ body: message_body,
368
+ tokens: []
369
+ }]
370
+ }]
371
+ }
372
+ }.to_json
373
+ req.headers['Content-Type'] = 'application/json'
374
+ end
375
+
376
+ data = parse_response(r, 'data')
377
+ handle_itc_response(data)
378
+ end
379
+
355
380
  def get_ratings(app_id, platform, version_id = '', storefront = '')
356
381
  # if storefront or version_id is empty api fails
357
382
  rating_url = "ra/apps/#{app_id}/platforms/#{platform}/reviews/summary"
@@ -718,7 +743,7 @@ module Spaceship
718
743
  data["preOrder"]["clearedForPreOrder"] = { "value" => cleared_for_preorder, "isEditable" => true, "isRequired" => true, "errorKeys" => nil }
719
744
  data["preOrder"]["appAvailableDate"] = { "value" => app_available_date, "isEditable" => true, "isRequired" => true, "errorKeys" => nil }
720
745
  data["b2bUsers"] = availability.b2b_app_enabled ? availability.b2b_users.map { |user| { "value" => { "add" => user.add, "delete" => user.delete, "dsUsername" => user.ds_username } } } : []
721
-
746
+ data["b2bOrganizations"] = availability.b2b_app_enabled ? availability.b2b_organizations.map { |org| { "value" => { "type" => org.type, "depCustomerId" => org.dep_customer_id, "organizationId" => org.dep_organization_id, "name" => org.name } } } : []
722
747
  # send the changes back to Apple
723
748
  r = request(:post) do |req|
724
749
  req.url("ra/apps/#{app_id}/pricing/intervals")
@@ -791,6 +816,35 @@ module Spaceship
791
816
  du_client.upload_watch_icon(app_version, upload_image, content_provider_id, sso_token_for_image)
792
817
  end
793
818
 
819
+ # Uploads an In-App-Purchase Promotional image
820
+ # @param upload_image (UploadFile): The icon to upload
821
+ # @return [JSON] the image data, ready to be added to an In-App-Purchase
822
+ def upload_purchase_merch_screenshot(app_id, upload_image)
823
+ data = du_client.upload_purchase_merch_screenshot(app_id, upload_image, content_provider_id, sso_token_for_image)
824
+ {
825
+ "images" => [
826
+ {
827
+ "id" => nil,
828
+ "image" => {
829
+ "value" => {
830
+ "assetToken" => data["token"],
831
+ "originalFileName" => upload_image.file_name,
832
+ "height" => data["height"],
833
+ "width" => data["width"],
834
+ "checksum" => data["md5"]
835
+ },
836
+ "isEditable" => true,
837
+ "isREquired" => false,
838
+ "errorKeys" => nil
839
+ },
840
+ "status" => "proposed"
841
+ }
842
+ ],
843
+ "showByDefault" => true,
844
+ "isActive" => false
845
+ }
846
+ end
847
+
794
848
  # Uploads an In-App-Purchase Review screenshot
795
849
  # @param app_id (AppId): The id of the app
796
850
  # @param upload_image (UploadFile): The icon to upload
@@ -1304,7 +1358,7 @@ module Spaceship
1304
1358
  end
1305
1359
 
1306
1360
  # Creates an In-App-Purchases
1307
- def create_iap!(app_id: nil, type: nil, versions: nil, reference_name: nil, product_id: nil, cleared_for_sale: true, review_notes: nil, review_screenshot: nil, pricing_intervals: nil, family_id: nil, subscription_duration: nil, subscription_free_trial: nil)
1361
+ def create_iap!(app_id: nil, type: nil, versions: nil, reference_name: nil, product_id: nil, cleared_for_sale: true, merch_screenshot: nil, review_notes: nil, review_screenshot: nil, pricing_intervals: nil, family_id: nil, subscription_duration: nil, subscription_free_trial: nil)
1308
1362
  # Load IAP Template based on Type
1309
1363
  type ||= "consumable"
1310
1364
  r = request(:get, "ra/apps/#{app_id}/iaps/#{type}/template")
@@ -1348,6 +1402,13 @@ module Spaceship
1348
1402
  data["versions"][0]["details"]["value"] = versions_array
1349
1403
  data['versions'][0]["reviewNotes"] = { value: review_notes }
1350
1404
 
1405
+ if merch_screenshot
1406
+ # Upload App Store Promotional image (Optional)
1407
+ upload_file = UploadFile.from_path(merch_screenshot)
1408
+ merch_data = upload_purchase_merch_screenshot(app_id, upload_file)
1409
+ data["versions"][0]["merch"] = merch_data
1410
+ end
1411
+
1351
1412
  if review_screenshot
1352
1413
  # Upload Screenshot:
1353
1414
  upload_file = UploadFile.from_path(review_screenshot)
@@ -312,7 +312,7 @@ module Supply
312
312
 
313
313
  track_version_codes = apk_version_code.kind_of?(Array) ? apk_version_code : [apk_version_code]
314
314
 
315
- # This change happend on 2018-04-24
315
+ # This change happened on 2018-04-24
316
316
  # rollout cannot be sent on any other track besides "rollout"
317
317
  # https://github.com/fastlane/fastlane/issues/12372
318
318
  rollout = nil unless track == "rollout"
metadata CHANGED
@@ -1,33 +1,33 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.128.1
4
+ version: 2.133.0
5
5
  platform: ruby
6
6
  authors:
7
- - Luka Mirosevic
8
- - Andrew McBurney
9
7
  - Danielle Tomlinson
8
+ - Fumiya Nakamura
9
+ - Felix Krause
10
+ - Maksym Grebenets
11
+ - Helmut Januschka
12
+ - Jorge Revuelta H
13
+ - Stefan Natchev
14
+ - Andrew McBurney
10
15
  - Kohki Miki
16
+ - Matthew Ellis
17
+ - Luka Mirosevic
18
+ - Jimmy Dee
11
19
  - Manu Wallner
12
20
  - Olivier Halligon
13
- - Stefan Natchev
21
+ - Joshua Liebowitz
14
22
  - Jan Piotrowski
15
- - Matthew Ellis
16
- - Aaron Brager
23
+ - Josh Holtz
17
24
  - Iulian Onofrei
18
- - Jimmy Dee
19
- - Helmut Januschka
20
- - Felix Krause
21
- - Fumiya Nakamura
22
- - Jorge Revuelta H
23
25
  - Jérôme Lacoste
24
- - Joshua Liebowitz
25
- - Josh Holtz
26
- - Maksym Grebenets
26
+ - Aaron Brager
27
27
  autorequire:
28
28
  bindir: bin
29
29
  cert_chain: []
30
- date: 2019-07-23 00:00:00.000000000 Z
30
+ date: 2019-10-02 00:00:00.000000000 Z
31
31
  dependencies:
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: slack-notifier
@@ -339,6 +339,34 @@ dependencies:
339
339
  - - "<"
340
340
  - !ruby/object:Gem::Version
341
341
  version: 1.0.0
342
+ - !ruby/object:Gem::Dependency
343
+ name: faraday
344
+ requirement: !ruby/object:Gem::Requirement
345
+ requirements:
346
+ - - "<"
347
+ - !ruby/object:Gem::Version
348
+ version: 0.16.0
349
+ type: :runtime
350
+ prerelease: false
351
+ version_requirements: !ruby/object:Gem::Requirement
352
+ requirements:
353
+ - - "<"
354
+ - !ruby/object:Gem::Version
355
+ version: 0.16.0
356
+ - !ruby/object:Gem::Dependency
357
+ name: faraday_middleware
358
+ requirement: !ruby/object:Gem::Requirement
359
+ requirements:
360
+ - - "<"
361
+ - !ruby/object:Gem::Version
362
+ version: 0.16.0
363
+ type: :runtime
364
+ prerelease: false
365
+ version_requirements: !ruby/object:Gem::Requirement
366
+ requirements:
367
+ - - "<"
368
+ - !ruby/object:Gem::Version
369
+ version: 0.16.0
342
370
  - !ruby/object:Gem::Dependency
343
371
  name: faraday-cookie_jar
344
372
  requirement: !ruby/object:Gem::Requirement
@@ -467,7 +495,7 @@ dependencies:
467
495
  requirements:
468
496
  - - ">="
469
497
  - !ruby/object:Gem::Version
470
- version: 1.2.2
498
+ version: 1.3.0
471
499
  - - "<"
472
500
  - !ruby/object:Gem::Version
473
501
  version: 2.0.0
@@ -477,7 +505,7 @@ dependencies:
477
505
  requirements:
478
506
  - - ">="
479
507
  - !ruby/object:Gem::Version
480
- version: 1.2.2
508
+ version: 1.3.0
481
509
  - - "<"
482
510
  - !ruby/object:Gem::Version
483
511
  version: 2.0.0
@@ -549,34 +577,6 @@ dependencies:
549
577
  - - "<"
550
578
  - !ruby/object:Gem::Version
551
579
  version: 3.0.0
552
- - !ruby/object:Gem::Dependency
553
- name: faraday
554
- requirement: !ruby/object:Gem::Requirement
555
- requirements:
556
- - - "~>"
557
- - !ruby/object:Gem::Version
558
- version: '0.9'
559
- type: :runtime
560
- prerelease: false
561
- version_requirements: !ruby/object:Gem::Requirement
562
- requirements:
563
- - - "~>"
564
- - !ruby/object:Gem::Version
565
- version: '0.9'
566
- - !ruby/object:Gem::Dependency
567
- name: faraday_middleware
568
- requirement: !ruby/object:Gem::Requirement
569
- requirements:
570
- - - "~>"
571
- - !ruby/object:Gem::Version
572
- version: '0.9'
573
- type: :runtime
574
- prerelease: false
575
- version_requirements: !ruby/object:Gem::Requirement
576
- requirements:
577
- - - "~>"
578
- - !ruby/object:Gem::Version
579
- version: '0.9'
580
580
  - !ruby/object:Gem::Dependency
581
581
  name: simctl
582
582
  requirement: !ruby/object:Gem::Requirement
@@ -986,6 +986,7 @@ files:
986
986
  - fastlane/lib/fastlane.rb
987
987
  - fastlane/lib/fastlane/action.rb
988
988
  - fastlane/lib/fastlane/action_collector.rb
989
+ - fastlane/lib/fastlane/actions/.hockey.rb.swp
989
990
  - fastlane/lib/fastlane/actions/.slack.rb.swp
990
991
  - fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp
991
992
  - fastlane/lib/fastlane/actions/README.md
@@ -1062,6 +1063,7 @@ files:
1062
1063
  - fastlane/lib/fastlane/actions/dsym_zip.rb
1063
1064
  - fastlane/lib/fastlane/actions/echo.rb
1064
1065
  - fastlane/lib/fastlane/actions/ensure_bundle_exec.rb
1066
+ - fastlane/lib/fastlane/actions/ensure_env_vars.rb
1065
1067
  - fastlane/lib/fastlane/actions/ensure_git_branch.rb
1066
1068
  - fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
1067
1069
  - fastlane/lib/fastlane/actions/ensure_no_debug_code.rb
@@ -1303,6 +1305,7 @@ files:
1303
1305
  - fastlane/lib/fastlane/swift_runner_upgrader.rb
1304
1306
  - fastlane/lib/fastlane/tools.rb
1305
1307
  - fastlane/lib/fastlane/version.rb
1308
+ - fastlane/swift/Actions.swift
1306
1309
  - fastlane/swift/Appfile.swift
1307
1310
  - fastlane/swift/ArgumentProcessor.swift
1308
1311
  - fastlane/swift/ControlCommand.swift
@@ -1312,6 +1315,7 @@ files:
1312
1315
  - fastlane/swift/Fastlane.swift
1313
1316
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
1314
1317
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
1318
+ - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
1315
1319
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate
1316
1320
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
1317
1321
  - fastlane/swift/FastlaneSwiftRunner/README.txt
@@ -1320,6 +1324,7 @@ files:
1320
1324
  - fastlane/swift/LaneFileProtocol.swift
1321
1325
  - fastlane/swift/Matchfile.swift
1322
1326
  - fastlane/swift/MatchfileProtocol.swift
1327
+ - fastlane/swift/Plugins.swift
1323
1328
  - fastlane/swift/Precheckfile.swift
1324
1329
  - fastlane/swift/PrecheckfileProtocol.swift
1325
1330
  - fastlane/swift/RubyCommand.swift
@@ -1418,6 +1423,7 @@ files:
1418
1423
  - gym/lib/assets/GymfileTemplate.swift
1419
1424
  - gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
1420
1425
  - gym/lib/gym.rb
1426
+ - gym/lib/gym/.runner.rb.swp
1421
1427
  - gym/lib/gym/code_signing_mapping.rb
1422
1428
  - gym/lib/gym/commands_generator.rb
1423
1429
  - gym/lib/gym/detect_values.rb
@@ -1639,6 +1645,7 @@ files:
1639
1645
  - spaceship/lib/spaceship/launcher.rb
1640
1646
  - spaceship/lib/spaceship/module.rb
1641
1647
  - spaceship/lib/spaceship/playground.rb
1648
+ - spaceship/lib/spaceship/portal/.certificate.rb.swp
1642
1649
  - spaceship/lib/spaceship/portal/app.rb
1643
1650
  - spaceship/lib/spaceship/portal/app_group.rb
1644
1651
  - spaceship/lib/spaceship/portal/app_service.rb
@@ -1692,6 +1699,7 @@ files:
1692
1699
  - spaceship/lib/spaceship/tunes/app_version_states_history.rb
1693
1700
  - spaceship/lib/spaceship/tunes/application.rb
1694
1701
  - spaceship/lib/spaceship/tunes/availability.rb
1702
+ - spaceship/lib/spaceship/tunes/b2b_organization.rb
1695
1703
  - spaceship/lib/spaceship/tunes/b2b_user.rb
1696
1704
  - spaceship/lib/spaceship/tunes/build.rb
1697
1705
  - spaceship/lib/spaceship/tunes/build_details.rb
@@ -1776,8 +1784,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1776
1784
  - !ruby/object:Gem::Version
1777
1785
  version: '0'
1778
1786
  requirements: []
1779
- rubyforge_project:
1780
- rubygems_version: 2.5.2.3
1787
+ rubygems_version: 3.0.3
1781
1788
  signing_key:
1782
1789
  specification_version: 4
1783
1790
  summary: The easiest way to automate beta deployments and releases for your iOS and