fastlane 2.128.0 → 2.132.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +64 -64
  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/.slack.rb.swp +0 -0
  10. data/fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp +0 -0
  11. data/fastlane/lib/fastlane/actions/actions_helper.rb +4 -0
  12. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +11 -3
  13. data/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +1 -1
  14. data/fastlane/lib/fastlane/actions/automatic_code_signing.rb +1 -1
  15. data/fastlane/lib/fastlane/actions/carthage.rb +4 -3
  16. data/fastlane/lib/fastlane/actions/commit_github_file.rb +1 -1
  17. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +1 -1
  18. data/fastlane/lib/fastlane/actions/danger.rb +7 -0
  19. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +23 -4
  20. data/fastlane/lib/fastlane/actions/download_dsyms.rb +35 -9
  21. data/fastlane/lib/fastlane/actions/ensure_env_vars.rb +58 -0
  22. data/fastlane/lib/fastlane/actions/get_version_number.rb +21 -2
  23. data/fastlane/lib/fastlane/actions/github_api.rb +1 -1
  24. data/fastlane/lib/fastlane/actions/gradle.rb +37 -8
  25. data/fastlane/lib/fastlane/actions/import_from_git.rb +1 -1
  26. data/fastlane/lib/fastlane/actions/onesignal.rb +59 -29
  27. data/fastlane/lib/fastlane/actions/pod_push.rb +29 -10
  28. data/fastlane/lib/fastlane/actions/puts.rb +1 -1
  29. data/fastlane/lib/fastlane/actions/register_devices.rb +38 -22
  30. data/fastlane/lib/fastlane/actions/resign.rb +2 -2
  31. data/fastlane/lib/fastlane/actions/slather.rb +1 -0
  32. data/fastlane/lib/fastlane/actions/sonar.rb +18 -0
  33. data/fastlane/lib/fastlane/actions/update_fastlane.rb +1 -1
  34. data/fastlane/lib/fastlane/commands_generator.rb +17 -1
  35. data/fastlane/lib/fastlane/fast_file.rb +7 -2
  36. data/fastlane/lib/fastlane/helper/adb_helper.rb +5 -0
  37. data/fastlane/lib/fastlane/helper/crashlytics_helper.rb +12 -6
  38. data/fastlane/lib/fastlane/plugins/plugin_manager.rb +2 -0
  39. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +3 -0
  40. data/fastlane/lib/fastlane/setup/setup_android.rb +1 -1
  41. data/fastlane/lib/fastlane/swift_fastlane_api_generator.rb +116 -32
  42. data/fastlane/lib/fastlane/swift_fastlane_function.rb +11 -7
  43. data/fastlane/lib/fastlane/swift_runner_upgrader.rb +4 -0
  44. data/fastlane/lib/fastlane/version.rb +1 -1
  45. data/fastlane/swift/Actions.swift +15 -0
  46. data/fastlane/swift/Deliverfile.swift +1 -1
  47. data/fastlane/swift/Fastlane.swift +341 -294
  48. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +9 -0
  49. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  50. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  51. data/fastlane/swift/Gymfile.swift +1 -1
  52. data/fastlane/swift/GymfileProtocol.swift +13 -11
  53. data/fastlane/swift/Matchfile.swift +1 -1
  54. data/fastlane/swift/MatchfileProtocol.swift +7 -1
  55. data/fastlane/swift/Plugins.swift +15 -0
  56. data/fastlane/swift/Precheckfile.swift +1 -1
  57. data/fastlane/swift/Scanfile.swift +1 -1
  58. data/fastlane/swift/ScanfileProtocol.swift +3 -3
  59. data/fastlane/swift/Screengrabfile.swift +1 -1
  60. data/fastlane/swift/Snapshotfile.swift +1 -1
  61. data/fastlane/swift/SnapshotfileProtocol.swift +3 -1
  62. data/fastlane/swift/upgrade_manifest.json +1 -1
  63. data/fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb +1 -1
  64. data/fastlane_core/lib/fastlane_core/command_executor.rb +1 -1
  65. data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +1 -1
  66. data/fastlane_core/lib/fastlane_core/helper.rb +1 -1
  67. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +1 -3
  68. data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +3 -2
  69. data/frameit/lib/frameit/editor.rb +1 -1
  70. data/frameit/lib/frameit/screenshot.rb +4 -0
  71. data/gym/lib/gym/.runner.rb.swp +0 -0
  72. data/gym/lib/gym/generators/build_command_generator.rb +5 -1
  73. data/gym/lib/gym/options.rb +17 -17
  74. data/gym/lib/gym/runner.rb +33 -5
  75. data/match/lib/match/generator.rb +1 -0
  76. data/match/lib/match/importer.rb +1 -1
  77. data/match/lib/match/module.rb +2 -0
  78. data/match/lib/match/nuke.rb +6 -6
  79. data/match/lib/match/options.rb +17 -0
  80. data/match/lib/match/runner.rb +13 -9
  81. data/match/lib/match/storage/git_storage.rb +8 -2
  82. data/match/lib/match/storage/google_cloud_storage.rb +82 -33
  83. data/match/lib/match/storage/interface.rb +1 -1
  84. data/pilot/lib/pilot/.manager.rb.swp +0 -0
  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/.DS_Store +0 -0
  100. data/spaceship/lib/spaceship/connect_api/models/app.rb +6 -6
  101. data/spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb +1 -0
  102. data/spaceship/lib/spaceship/connect_api/models/build.rb +3 -3
  103. data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +1 -1
  104. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +1 -1
  105. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +1 -1
  106. data/spaceship/lib/spaceship/connect_api/models/device.rb +1 -1
  107. data/spaceship/lib/spaceship/connect_api/models/profile.rb +1 -1
  108. data/spaceship/lib/spaceship/du/du_client.rb +4 -0
  109. data/spaceship/lib/spaceship/portal/.certificate.rb.swp +0 -0
  110. data/spaceship/lib/spaceship/portal/certificate.rb +15 -1
  111. data/spaceship/lib/spaceship/portal/provisioning_profile.rb +1 -1
  112. data/spaceship/lib/spaceship/spaceauth_runner.rb +1 -1
  113. data/spaceship/lib/spaceship/test_flight/tester.rb +1 -1
  114. data/spaceship/lib/spaceship/tunes/app_version.rb +4 -0
  115. data/spaceship/lib/spaceship/tunes/application.rb +4 -0
  116. data/spaceship/lib/spaceship/tunes/availability.rb +40 -8
  117. data/spaceship/lib/spaceship/tunes/b2b_organization.rb +50 -0
  118. data/spaceship/lib/spaceship/tunes/build_details.rb +160 -18
  119. data/spaceship/lib/spaceship/tunes/display_family.rb +3 -3
  120. data/spaceship/lib/spaceship/tunes/iap.rb +2 -0
  121. data/spaceship/lib/spaceship/tunes/iap_detail.rb +17 -0
  122. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +10 -2
  123. data/spaceship/lib/spaceship/tunes/tunes_client.rb +63 -2
  124. data/supply/lib/supply/client.rb +1 -1
  125. metadata +59 -45
@@ -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.0
4
+ version: 2.132.0
5
5
  platform: ruby
6
6
  authors:
7
- - Helmut Januschka
8
- - Kohki Miki
9
- - Jimmy Dee
10
- - Josh Holtz
11
- - Fumiya Nakamura
12
7
  - Jérôme Lacoste
13
- - Danielle Tomlinson
14
- - Matthew Ellis
15
- - Felix Krause
16
- - Maksym Grebenets
17
- - Joshua Liebowitz
18
- - Stefan Natchev
19
8
  - Luka Mirosevic
20
- - Jorge Revuelta H
9
+ - Josh Holtz
10
+ - Maksym Grebenets
11
+ - Danielle Tomlinson
21
12
  - Andrew McBurney
22
- - Olivier Halligon
13
+ - Matthew Ellis
23
14
  - Iulian Onofrei
15
+ - Olivier Halligon
24
16
  - Aaron Brager
25
- - Jan Piotrowski
17
+ - Fumiya Nakamura
26
18
  - Manu Wallner
19
+ - Kohki Miki
20
+ - Stefan Natchev
21
+ - Jorge Revuelta H
22
+ - Jimmy Dee
23
+ - Jan Piotrowski
24
+ - Felix Krause
25
+ - Joshua Liebowitz
26
+ - Helmut Januschka
27
27
  autorequire:
28
28
  bindir: bin
29
29
  cert_chain: []
30
- date: 2019-07-22 00:00:00.000000000 Z
30
+ date: 2019-10-01 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
@@ -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,9 @@ 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
990
+ - fastlane/lib/fastlane/actions/.slack.rb.swp
991
+ - fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp
989
992
  - fastlane/lib/fastlane/actions/README.md
990
993
  - fastlane/lib/fastlane/actions/actions_helper.rb
991
994
  - fastlane/lib/fastlane/actions/adb.rb
@@ -1060,6 +1063,7 @@ files:
1060
1063
  - fastlane/lib/fastlane/actions/dsym_zip.rb
1061
1064
  - fastlane/lib/fastlane/actions/echo.rb
1062
1065
  - fastlane/lib/fastlane/actions/ensure_bundle_exec.rb
1066
+ - fastlane/lib/fastlane/actions/ensure_env_vars.rb
1063
1067
  - fastlane/lib/fastlane/actions/ensure_git_branch.rb
1064
1068
  - fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
1065
1069
  - fastlane/lib/fastlane/actions/ensure_no_debug_code.rb
@@ -1301,6 +1305,7 @@ files:
1301
1305
  - fastlane/lib/fastlane/swift_runner_upgrader.rb
1302
1306
  - fastlane/lib/fastlane/tools.rb
1303
1307
  - fastlane/lib/fastlane/version.rb
1308
+ - fastlane/swift/Actions.swift
1304
1309
  - fastlane/swift/Appfile.swift
1305
1310
  - fastlane/swift/ArgumentProcessor.swift
1306
1311
  - fastlane/swift/ControlCommand.swift
@@ -1310,6 +1315,8 @@ files:
1310
1315
  - fastlane/swift/Fastlane.swift
1311
1316
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
1312
1317
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
1318
+ - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
1319
+ - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate
1313
1320
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
1314
1321
  - fastlane/swift/FastlaneSwiftRunner/README.txt
1315
1322
  - fastlane/swift/Gymfile.swift
@@ -1317,6 +1324,7 @@ files:
1317
1324
  - fastlane/swift/LaneFileProtocol.swift
1318
1325
  - fastlane/swift/Matchfile.swift
1319
1326
  - fastlane/swift/MatchfileProtocol.swift
1327
+ - fastlane/swift/Plugins.swift
1320
1328
  - fastlane/swift/Precheckfile.swift
1321
1329
  - fastlane/swift/PrecheckfileProtocol.swift
1322
1330
  - fastlane/swift/RubyCommand.swift
@@ -1415,6 +1423,7 @@ files:
1415
1423
  - gym/lib/assets/GymfileTemplate.swift
1416
1424
  - gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
1417
1425
  - gym/lib/gym.rb
1426
+ - gym/lib/gym/.runner.rb.swp
1418
1427
  - gym/lib/gym/code_signing_mapping.rb
1419
1428
  - gym/lib/gym/commands_generator.rb
1420
1429
  - gym/lib/gym/detect_values.rb
@@ -1463,6 +1472,7 @@ files:
1463
1472
  - pem/lib/pem/options.rb
1464
1473
  - pilot/README.md
1465
1474
  - pilot/lib/pilot.rb
1475
+ - pilot/lib/pilot/.manager.rb.swp
1466
1476
  - pilot/lib/pilot/build_manager.rb
1467
1477
  - pilot/lib/pilot/commands_generator.rb
1468
1478
  - pilot/lib/pilot/features.rb
@@ -1594,6 +1604,7 @@ files:
1594
1604
  - spaceship/lib/spaceship/client.rb
1595
1605
  - spaceship/lib/spaceship/commands_generator.rb
1596
1606
  - spaceship/lib/spaceship/connect_api.rb
1607
+ - spaceship/lib/spaceship/connect_api/.DS_Store
1597
1608
  - spaceship/lib/spaceship/connect_api/client.rb
1598
1609
  - spaceship/lib/spaceship/connect_api/model.rb
1599
1610
  - spaceship/lib/spaceship/connect_api/models/app.rb
@@ -1634,6 +1645,7 @@ files:
1634
1645
  - spaceship/lib/spaceship/launcher.rb
1635
1646
  - spaceship/lib/spaceship/module.rb
1636
1647
  - spaceship/lib/spaceship/playground.rb
1648
+ - spaceship/lib/spaceship/portal/.certificate.rb.swp
1637
1649
  - spaceship/lib/spaceship/portal/app.rb
1638
1650
  - spaceship/lib/spaceship/portal/app_group.rb
1639
1651
  - spaceship/lib/spaceship/portal/app_service.rb
@@ -1687,6 +1699,7 @@ files:
1687
1699
  - spaceship/lib/spaceship/tunes/app_version_states_history.rb
1688
1700
  - spaceship/lib/spaceship/tunes/application.rb
1689
1701
  - spaceship/lib/spaceship/tunes/availability.rb
1702
+ - spaceship/lib/spaceship/tunes/b2b_organization.rb
1690
1703
  - spaceship/lib/spaceship/tunes/b2b_user.rb
1691
1704
  - spaceship/lib/spaceship/tunes/build.rb
1692
1705
  - spaceship/lib/spaceship/tunes/build_details.rb
@@ -1771,7 +1784,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1771
1784
  - !ruby/object:Gem::Version
1772
1785
  version: '0'
1773
1786
  requirements: []
1774
- rubygems_version: 3.0.1
1787
+ rubyforge_project:
1788
+ rubygems_version: 2.5.2.3
1775
1789
  signing_key:
1776
1790
  specification_version: 4
1777
1791
  summary: The easiest way to automate beta deployments and releases for your iOS and