fastlane 2.159.0 → 2.164.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +74 -74
  3. data/cert/lib/cert/options.rb +28 -1
  4. data/cert/lib/cert/runner.rb +50 -33
  5. data/deliver/lib/deliver/app_screenshot_iterator.rb +4 -4
  6. data/deliver/lib/deliver/module.rb +2 -0
  7. data/deliver/lib/deliver/options.rb +20 -4
  8. data/deliver/lib/deliver/queue_worker.rb +14 -29
  9. data/deliver/lib/deliver/runner.rb +36 -8
  10. data/deliver/lib/deliver/upload_metadata.rb +51 -10
  11. data/deliver/lib/deliver/upload_price_tier.rb +7 -2
  12. data/deliver/lib/deliver/upload_screenshots.rb +28 -13
  13. data/fastlane/lib/fastlane/actions/actions_helper.rb +20 -1
  14. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +39 -3
  15. data/fastlane/lib/fastlane/actions/app_store_connect_api_key.rb +15 -1
  16. data/fastlane/lib/fastlane/actions/check_app_store_metadata.rb +1 -0
  17. data/fastlane/lib/fastlane/actions/clean_build_artifacts.rb +1 -0
  18. data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +2 -2
  19. data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +2 -2
  20. data/fastlane/lib/fastlane/actions/docs/create_app_online.md +1 -1
  21. data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +3 -2
  22. data/fastlane/lib/fastlane/actions/docs/run_tests.md +2 -2
  23. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +12 -3
  24. data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +2 -2
  25. data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +1 -1
  26. data/fastlane/lib/fastlane/actions/download_dsyms.rb +31 -6
  27. data/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb +13 -2
  28. data/fastlane/lib/fastlane/actions/get_certificates.rb +1 -0
  29. data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +1 -0
  30. data/fastlane/lib/fastlane/actions/import_from_git.rb +9 -1
  31. data/fastlane/lib/fastlane/actions/is_ci.rb +1 -1
  32. data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +15 -0
  33. data/fastlane/lib/fastlane/actions/register_device.rb +46 -5
  34. data/fastlane/lib/fastlane/actions/register_devices.rb +50 -16
  35. data/fastlane/lib/fastlane/actions/set_changelog.rb +31 -3
  36. data/fastlane/lib/fastlane/actions/sync_code_signing.rb +1 -0
  37. data/fastlane/lib/fastlane/actions/upload_to_app_store.rb +3 -2
  38. data/fastlane/lib/fastlane/fast_file.rb +74 -23
  39. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +1 -0
  40. data/fastlane/lib/fastlane/version.rb +1 -1
  41. data/fastlane/swift/Deliverfile.swift +1 -1
  42. data/fastlane/swift/DeliverfileProtocol.swift +13 -5
  43. data/fastlane/swift/Fastlane.swift +170 -44
  44. data/fastlane/swift/Gymfile.swift +1 -1
  45. data/fastlane/swift/GymfileProtocol.swift +1 -1
  46. data/fastlane/swift/LaneFileProtocol.swift +28 -36
  47. data/fastlane/swift/MainProcess.swift +1 -1
  48. data/fastlane/swift/Matchfile.swift +1 -1
  49. data/fastlane/swift/MatchfileProtocol.swift +20 -4
  50. data/fastlane/swift/Precheckfile.swift +1 -1
  51. data/fastlane/swift/PrecheckfileProtocol.swift +9 -1
  52. data/fastlane/swift/Scanfile.swift +1 -1
  53. data/fastlane/swift/ScanfileProtocol.swift +1 -1
  54. data/fastlane/swift/Screengrabfile.swift +1 -1
  55. data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
  56. data/fastlane/swift/Snapshotfile.swift +1 -1
  57. data/fastlane/swift/SnapshotfileProtocol.swift +1 -1
  58. data/fastlane/swift/main.swift +1 -1
  59. data/fastlane_core/lib/fastlane_core/analytics/analytics_session.rb +6 -7
  60. data/fastlane_core/lib/fastlane_core/device_manager.rb +8 -4
  61. data/fastlane_core/lib/fastlane_core/helper.rb +1 -1
  62. data/fastlane_core/lib/fastlane_core/keychain_importer.rb +3 -3
  63. data/frameit/lib/frameit/editor.rb +1 -0
  64. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +2 -2
  65. data/match/lib/match/.commands_generator.rb.swp +0 -0
  66. data/match/lib/match/.importer.rb.swp +0 -0
  67. data/{spaceship/lib/spaceship/connect_api/models/.app.rb.swp → match/lib/match/.options.rb.swp} +0 -0
  68. data/match/lib/match/generator.rb +6 -1
  69. data/match/lib/match/importer.rb +63 -18
  70. data/match/lib/match/migrate.rb +13 -2
  71. data/match/lib/match/nuke.rb +65 -22
  72. data/match/lib/match/options.rb +33 -2
  73. data/match/lib/match/runner.rb +38 -10
  74. data/match/lib/match/spaceship_ensure.rb +27 -21
  75. data/match/lib/match/storage/google_cloud_storage.rb +20 -3
  76. data/match/lib/match/storage/s3_storage.rb +19 -3
  77. data/pilot/lib/pilot/options.rb +2 -2
  78. data/precheck/lib/precheck/options.rb +16 -0
  79. data/precheck/lib/precheck/runner.rb +20 -1
  80. data/scan/lib/scan/detect_values.rb +5 -8
  81. data/scan/lib/scan/runner.rb +2 -1
  82. data/sigh/lib/assets/resign.sh +1 -1
  83. data/sigh/lib/sigh/download_all.rb +16 -4
  84. data/sigh/lib/sigh/options.rb +21 -0
  85. data/sigh/lib/sigh/runner.rb +81 -39
  86. data/snapshot/lib/assets/SnapshotHelper.swift +4 -0
  87. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +2 -1
  88. data/spaceship/README.md +1 -1
  89. data/spaceship/lib/spaceship/client.rb +9 -4
  90. data/spaceship/lib/spaceship/connect_api.rb +25 -0
  91. data/spaceship/lib/spaceship/connect_api/api_client.rb +12 -3
  92. data/spaceship/lib/spaceship/connect_api/client.rb +13 -3
  93. data/spaceship/lib/spaceship/connect_api/models/app.rb +17 -9
  94. data/spaceship/lib/spaceship/connect_api/models/app_info.rb +1 -0
  95. data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +3 -1
  96. data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +2 -2
  97. data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +3 -5
  98. data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +3 -5
  99. data/spaceship/lib/spaceship/connect_api/models/beta_tester.rb +2 -1
  100. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +42 -0
  101. data/spaceship/lib/spaceship/connect_api/models/device.rb +5 -0
  102. data/spaceship/lib/spaceship/connect_api/models/profile.rb +7 -1
  103. data/spaceship/lib/spaceship/connect_api/models/user_invitation.rb +59 -0
  104. data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +45 -2
  105. data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +13 -0
  106. data/spaceship/lib/spaceship/connect_api/token.rb +6 -1
  107. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +15 -7
  108. data/spaceship/lib/spaceship/connect_api/users/users.rb +40 -0
  109. data/spaceship/lib/spaceship/helper/net_http_generic_request.rb +11 -5
  110. data/supply/lib/supply/uploader.rb +1 -1
  111. metadata +21 -19
  112. data/spaceship/lib/spaceship/connect_api/models/.app_store_version.rb.swp +0 -0
@@ -27,7 +27,8 @@ module Spaceship
27
27
  "expirationDate" => "expiration_date",
28
28
 
29
29
  "bundleId" => "bundle_id",
30
- "certificates" => "certificates"
30
+ "certificates" => "certificates",
31
+ "devices" => "devices"
31
32
  })
32
33
 
33
34
  module ProfileState
@@ -83,6 +84,11 @@ module Spaceship
83
84
  return resp.to_models.first
84
85
  end
85
86
 
87
+ def fetch_all_devices(filter: {}, includes: nil, sort: nil)
88
+ resps = Spaceship::ConnectAPI.get_devices(profile_id: id, filter: filter, includes: includes).all_pages
89
+ return resps.flat_map(&:to_models)
90
+ end
91
+
86
92
  def delete!
87
93
  return Spaceship::ConnectAPI.delete_profile(profile_id: id)
88
94
  end
@@ -0,0 +1,59 @@
1
+ require_relative '../model'
2
+ module Spaceship
3
+ class ConnectAPI
4
+ class UserInvitation
5
+ include Spaceship::ConnectAPI::Model
6
+
7
+ attr_accessor :first_name
8
+ attr_accessor :last_name
9
+ attr_accessor :email
10
+ attr_accessor :roles
11
+ attr_accessor :all_apps_visible
12
+ attr_accessor :provisioning_allowed
13
+
14
+ attr_mapping({
15
+ "firstName" => "first_name",
16
+ "lastName" => "last_name",
17
+ "email" => "email",
18
+ "roles" => "roles",
19
+ "allAppsVisible" => "all_apps_visible",
20
+ "provisioningAllowed" => "provisioning_allowed"
21
+ })
22
+
23
+ module UserRole
24
+ ADMIN = "ADMIN"
25
+ FINANCE = "FINANCE"
26
+ TECHNICAL = "TECHNICAL"
27
+ SALES = "SALES"
28
+ MARKETING = "MARKETING"
29
+ DEVELOPER = "DEVELOPER"
30
+ ACCOUNT_HOLDER = "ACCOUNT_HOLDER"
31
+ READ_ONLY = "READ_ONLY"
32
+ APP_MANAGER = "APP_MANAGER"
33
+ ACCESS_TO_REPORTS = "ACCESS_TO_REPORTS"
34
+ CUSTOMER_SUPPORT = "CUSTOMER_SUPPORT"
35
+ end
36
+
37
+ def self.type
38
+ return "userInvitations"
39
+ end
40
+
41
+ #
42
+ # Managing invitations
43
+ #
44
+
45
+ def self.all(filter: {}, includes: nil, sort: nil)
46
+ resps = Spaceship::ConnectAPI.get_user_invitations(filter: filter, includes: includes, sort: sort).all_pages
47
+ return resps.flat_map(&:to_models)
48
+ end
49
+
50
+ def self.find(email: nil, includes: nil)
51
+ return all(filter: { email: email }, includes: includes)
52
+ end
53
+
54
+ def delete!
55
+ Spaceship::ConnectAPI.delete_user_invitation(user_invitation_id: id)
56
+ end
57
+ end
58
+ end
59
+ end
@@ -36,13 +36,56 @@ module Spaceship
36
36
  provisioning_request_client.get("certificates", params)
37
37
  end
38
38
 
39
+ def get_certificate(certificate_id: nil, includes: nil)
40
+ params = provisioning_request_client.build_params(filter: nil, includes: includes, limit: nil, sort: nil)
41
+ provisioning_request_client.get("certificates/#{certificate_id}", params)
42
+ end
43
+
44
+ def post_certificate(attributes: {})
45
+ body = {
46
+ data: {
47
+ attributes: attributes,
48
+ type: "certificates"
49
+ }
50
+ }
51
+
52
+ provisioning_request_client.post("certificates", body)
53
+ end
54
+
55
+ def delete_certificate(certificate_id: nil)
56
+ raise "Certificate id is nil" if certificate_id.nil?
57
+
58
+ provisioning_request_client.delete("certificates/#{certificate_id}")
59
+ end
60
+
39
61
  #
40
62
  # devices
41
63
  #
42
64
 
43
- def get_devices(filter: {}, includes: nil, limit: nil, sort: nil)
65
+ def get_devices(profile_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
44
66
  params = provisioning_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
45
- provisioning_request_client.get("devices", params)
67
+ if profile_id.nil?
68
+ provisioning_request_client.get("devices", params)
69
+ else
70
+ provisioning_request_client.get("profiles/#{profile_id}/devices", params)
71
+ end
72
+ end
73
+
74
+ def post_device(name: nil, platform: nil, udid: nil)
75
+ attributes = {
76
+ name: name,
77
+ platform: platform,
78
+ udid: udid
79
+ }
80
+
81
+ body = {
82
+ data: {
83
+ attributes: attributes,
84
+ type: "devices"
85
+ }
86
+ }
87
+
88
+ provisioning_request_client.post("devices", body)
46
89
  end
47
90
 
48
91
  #
@@ -277,6 +277,19 @@ module Spaceship
277
277
  test_flight_request_client.delete("betaTesters/#{beta_tester_id}/relationships/betaGroups", nil, body)
278
278
  end
279
279
 
280
+ def delete_beta_testers_from_app(beta_tester_ids: [], app_id: nil)
281
+ body = {
282
+ data: beta_tester_ids.map do |id|
283
+ {
284
+ type: "betaTesters",
285
+ id: id
286
+ }
287
+ end
288
+ }
289
+
290
+ test_flight_request_client.delete("apps/#{app_id}/relationships/betaTesters", nil, body)
291
+ end
292
+
280
293
  #
281
294
  # betaTesterMetrics
282
295
  #
@@ -1,4 +1,5 @@
1
1
  require 'jwt'
2
+ require 'base64'
2
3
  require 'openssl'
3
4
 
4
5
  # extract pem from .p8
@@ -39,7 +40,7 @@ module Spaceship
39
40
  self.create(json)
40
41
  end
41
42
 
42
- def self.create(key_id: nil, issuer_id: nil, filepath: nil, key: nil, duration: nil, in_house: nil)
43
+ def self.create(key_id: nil, issuer_id: nil, filepath: nil, key: nil, is_key_content_base64: false, duration: nil, in_house: nil)
43
44
  key_id ||= ENV['SPACESHIP_CONNECT_API_KEY_ID']
44
45
  issuer_id ||= ENV['SPACESHIP_CONNECT_API_ISSUER_ID']
45
46
  filepath ||= ENV['SPACESHIP_CONNECT_API_KEY_FILEPATH']
@@ -51,6 +52,10 @@ module Spaceship
51
52
  key ||= ENV['SPACESHIP_CONNECT_API_KEY']
52
53
  key ||= File.binread(filepath)
53
54
 
55
+ if !key.nil? && is_key_content_base64
56
+ key = Base64.decode64(key)
57
+ end
58
+
54
59
  self.new(
55
60
  key_id: key_id,
56
61
  issuer_id: issuer_id,
@@ -185,9 +185,12 @@ module Spaceship
185
185
  type: "apps",
186
186
  id: app_id
187
187
  }
188
- data[:attributes] = attributes unless attributes.empty?
189
188
  data[:relationships] = relationships unless relationships.empty?
190
189
 
190
+ if !attributes.nil? && !attributes.empty?
191
+ data[:attributes] = attributes
192
+ end
193
+
191
194
  # Body
192
195
  body = {
193
196
  data: data
@@ -308,6 +311,11 @@ module Spaceship
308
311
  tunes_request_client.get("appPrices", params)
309
312
  end
310
313
 
314
+ def get_app_price(app_price_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
315
+ params = tunes_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
316
+ tunes_request_client.get("appPrices/#{app_price_id}", params)
317
+ end
318
+
311
319
  #
312
320
  # appPricePoints
313
321
  #
@@ -360,9 +368,9 @@ module Spaceship
360
368
  # appScreenshotSets
361
369
  #
362
370
 
363
- def get_app_screenshot_sets(filter: {}, includes: nil, limit: nil, sort: nil)
371
+ def get_app_screenshot_sets(app_store_version_localization_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
364
372
  params = tunes_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
365
- tunes_request_client.get("appScreenshotSets", params)
373
+ tunes_request_client.get("appStoreVersionLocalizations/#{app_store_version_localization_id}/appScreenshotSets", params)
366
374
  end
367
375
 
368
376
  def get_app_screenshot_set(app_screenshot_set_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
@@ -453,9 +461,9 @@ module Spaceship
453
461
  # appInfos
454
462
  #
455
463
 
456
- def get_app_infos(filter: {}, includes: nil, limit: nil, sort: nil)
464
+ def get_app_infos(app_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
457
465
  params = tunes_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
458
- tunes_request_client.get("appInfos", params)
466
+ tunes_request_client.get("apps/#{app_id}/appInfos", params)
459
467
  end
460
468
 
461
469
  def patch_app_info(app_info_id: nil, attributes: {})
@@ -641,9 +649,9 @@ module Spaceship
641
649
  # appStoreVersionLocalizations
642
650
  #
643
651
 
644
- def get_app_store_version_localizations(filter: {}, includes: nil, limit: nil, sort: nil)
652
+ def get_app_store_version_localizations(app_store_version_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
645
653
  params = tunes_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
646
- tunes_request_client.get("appStoreVersionLocalizations", params)
654
+ tunes_request_client.get("appStoreVersions/#{app_store_version_id}/appStoreVersionLocalizations", params)
647
655
  end
648
656
 
649
657
  def post_app_store_version_localization(app_store_version_id: nil, attributes: {})
@@ -17,11 +17,18 @@ module Spaceship
17
17
  # users
18
18
  #
19
19
 
20
+ # Get list of users
20
21
  def get_users(filter: {}, includes: nil, limit: nil, sort: nil)
21
22
  params = users_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
22
23
  users_request_client.get("users", params)
23
24
  end
24
25
 
26
+ # Delete existing user
27
+ def delete_user(user_id: nil)
28
+ users_request_client.delete("users/#{user_id}")
29
+ end
30
+
31
+ # Change app permissions for user
25
32
  def add_user_visible_apps(user_id: nil, app_ids: nil)
26
33
  body = {
27
34
  data: app_ids.map do |app_id|
@@ -34,6 +41,39 @@ module Spaceship
34
41
 
35
42
  users_request_client.post("users/#{user_id}/relationships/visibleApps", body)
36
43
  end
44
+
45
+ #
46
+ # invitations (invited users)
47
+ #
48
+
49
+ # Get all invited users (not yet accepted)
50
+ def get_user_invitations(filter: {}, includes: nil, limit: nil, sort: nil)
51
+ params = users_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
52
+ users_request_client.get("userInvitations", params)
53
+ end
54
+
55
+ # Invite new users to App Store Connect
56
+ def post_user_invitation(email: nil, first_name: nil, last_name: nil, roles: [], provisioning_allowed: nil, all_apps_visible: nil)
57
+ body = {
58
+ data: {
59
+ type: "userInvitations",
60
+ attributes: {
61
+ email: email,
62
+ firstName: first_name,
63
+ lastName: last_name,
64
+ roles: roles,
65
+ provisioningAllowed: provisioning_allowed,
66
+ allAppsVisible: all_apps_visible
67
+ }
68
+ }
69
+ }
70
+ users_request_client.post("userInvitations", body)
71
+ end
72
+
73
+ # Remove invited user from team (not yet accepted)
74
+ def delete_user_invitation(user_invitation_id: nil)
75
+ users_request_client.delete("userInvitations/#{user_invitation_id}")
76
+ end
37
77
  end
38
78
  end
39
79
  end
@@ -5,10 +5,16 @@ require 'net/http'
5
5
  # Certain apple endpoints return 415 responses if a Content-Type is supplied.
6
6
  # Net::HTTP will default a content-type if none is provided by faraday
7
7
  # This monkey-patch allows us to leave out the content-type if we do not specify one.
8
- module Net
9
- class HTTPGenericRequest
10
- def supply_default_content_type
11
- return if content_type
12
- end
8
+ module NetHTTPGenericRequestMonkeypatch
9
+ def supply_default_content_type
10
+ # Return no content type if we communicating with an apple.com domain
11
+ return if !self['host'].nil? && self['host'].end_with?('.apple.com')
12
+
13
+ # Otherwise use the default implementation
14
+ super
13
15
  end
14
16
  end
17
+
18
+ # We prepend the monkeypatch so the patch has access to the original implementation
19
+ # using `super`.
20
+ Net::HTTPGenericRequest.prepend(NetHTTPGenericRequestMonkeypatch)
@@ -111,7 +111,7 @@ module Supply
111
111
  releases = track.releases
112
112
 
113
113
  releases = releases.select { |r| r.status == status } if status
114
- releases = releases.select { |r| r.version_codes.map(&:to_s).include?(version_code.to_s) } if version_code
114
+ releases = releases.select { |r| (r.version_codes || []).map(&:to_s).include?(version_code.to_s) } if version_code
115
115
 
116
116
  if releases.size > 1
117
117
  UI.user_error!("More than one release found in this track. Please specify with the :version_code option to select a release.")
metadata CHANGED
@@ -1,35 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.159.0
4
+ version: 2.164.0
5
5
  platform: ruby
6
6
  authors:
7
+ - Helmut Januschka
8
+ - Luka Mirosevic
9
+ - Fumiya Nakamura
7
10
  - Jimmy Dee
8
- - Iulian Onofrei
9
- - Kohki Miki
10
- - Daniel Jankowski
11
- - Olivier Halligon
12
- - Matthew Ellis
11
+ - Maksym Grebenets
12
+ - Manu Wallner
13
13
  - Danielle Tomlinson
14
+ - Jan Piotrowski
14
15
  - Max Ott
15
- - Luka Mirosevic
16
- - Maksym Grebenets
16
+ - Iulian Onofrei
17
+ - Jérôme Lacoste
18
+ - Matthew Ellis
19
+ - Olivier Halligon
17
20
  - Josh Holtz
21
+ - Jorge Revuelta H
22
+ - Aaron Brager
23
+ - Felix Krause
18
24
  - Joshua Liebowitz
25
+ - Kohki Miki
19
26
  - Stefan Natchev
20
- - Aaron Brager
21
- - Jorge Revuelta H
22
- - Jan Piotrowski
23
- - Jérôme Lacoste
27
+ - Daniel Jankowski
24
28
  - Andrew McBurney
25
- - Fumiya Nakamura
26
- - Helmut Januschka
27
- - Manu Wallner
28
- - Felix Krause
29
29
  autorequire:
30
30
  bindir: bin
31
31
  cert_chain: []
32
- date: 2020-09-10 00:00:00.000000000 Z
32
+ date: 2020-10-19 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: slack-notifier
@@ -1453,6 +1453,9 @@ files:
1453
1453
  - match/lib/assets/MatchfileTemplate.swift
1454
1454
  - match/lib/assets/READMETemplate.md
1455
1455
  - match/lib/match.rb
1456
+ - match/lib/match/.commands_generator.rb.swp
1457
+ - match/lib/match/.importer.rb.swp
1458
+ - match/lib/match/.options.rb.swp
1456
1459
  - match/lib/match/change_password.rb
1457
1460
  - match/lib/match/commands_generator.rb
1458
1461
  - match/lib/match/encryption.rb
@@ -1618,8 +1621,6 @@ files:
1618
1621
  - spaceship/lib/spaceship/connect_api/client.rb
1619
1622
  - spaceship/lib/spaceship/connect_api/file_uploader.rb
1620
1623
  - spaceship/lib/spaceship/connect_api/model.rb
1621
- - spaceship/lib/spaceship/connect_api/models/.app.rb.swp
1622
- - spaceship/lib/spaceship/connect_api/models/.app_store_version.rb.swp
1623
1624
  - spaceship/lib/spaceship/connect_api/models/.app_store_version_submission.rb.swp
1624
1625
  - spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb
1625
1626
  - spaceship/lib/spaceship/connect_api/models/app.rb
@@ -1664,6 +1665,7 @@ files:
1664
1665
  - spaceship/lib/spaceship/connect_api/models/sandbox_tester.rb
1665
1666
  - spaceship/lib/spaceship/connect_api/models/territory.rb
1666
1667
  - spaceship/lib/spaceship/connect_api/models/user.rb
1668
+ - spaceship/lib/spaceship/connect_api/models/user_invitation.rb
1667
1669
  - spaceship/lib/spaceship/connect_api/provisioning/client.rb
1668
1670
  - spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb
1669
1671
  - spaceship/lib/spaceship/connect_api/response.rb