fastlane 2.157.2 → 2.157.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +66 -66
  3. data/deliver/lib/deliver/runner.rb +0 -1
  4. data/fastlane/lib/fastlane/actions/{.git_commit.rb.swp → .ensure_git_status_clean.rb.swp} +0 -0
  5. data/fastlane/lib/fastlane/actions/.hockey.rb.swp +0 -0
  6. data/fastlane/lib/fastlane/actions/.slack.rb.swp +0 -0
  7. data/fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp +0 -0
  8. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +11 -8
  9. data/fastlane/lib/fastlane/actions/download_dsyms.rb +87 -68
  10. data/fastlane/lib/fastlane/actions/set_changelog.rb +0 -1
  11. data/fastlane/lib/fastlane/version.rb +1 -1
  12. data/fastlane/swift/Deliverfile.swift +1 -1
  13. data/fastlane/swift/DeliverfileProtocol.swift +1 -1
  14. data/fastlane/swift/Fastlane.swift +12 -12
  15. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  16. data/fastlane/swift/Gymfile.swift +1 -1
  17. data/fastlane/swift/GymfileProtocol.swift +1 -1
  18. data/fastlane/swift/Matchfile.swift +1 -1
  19. data/fastlane/swift/MatchfileProtocol.swift +1 -1
  20. data/fastlane/swift/Precheckfile.swift +1 -1
  21. data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
  22. data/fastlane/swift/Scanfile.swift +1 -1
  23. data/fastlane/swift/ScanfileProtocol.swift +1 -1
  24. data/fastlane/swift/Screengrabfile.swift +1 -1
  25. data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
  26. data/fastlane/swift/Snapshotfile.swift +1 -1
  27. data/fastlane/swift/SnapshotfileProtocol.swift +1 -1
  28. data/match/lib/match/spaceship_ensure.rb +5 -5
  29. data/{fastlane/lib/fastlane/.erb_template_helper.rb.swp → pilot/lib/pilot/.manager.rb.swp} +0 -0
  30. data/pilot/lib/pilot/build_manager.rb +0 -3
  31. data/pilot/lib/pilot/manager.rb +1 -2
  32. data/produce/lib/produce/itunes_connect.rb +0 -1
  33. data/sigh/lib/assets/resign.sh +9 -6
  34. data/sigh/lib/sigh/runner.rb +0 -1
  35. data/spaceship/lib/spaceship/client.rb +1 -0
  36. data/spaceship/lib/spaceship/connect_api.rb +1 -0
  37. data/spaceship/lib/spaceship/{.DS_Store → connect_api/.DS_Store} +0 -0
  38. data/spaceship/lib/spaceship/connect_api/client.rb +10 -4
  39. data/spaceship/lib/spaceship/connect_api/file_uploader.rb +2 -0
  40. data/spaceship/lib/spaceship/connect_api/models/app.rb +5 -5
  41. data/spaceship/lib/spaceship/connect_api/models/app_price_point.rb +26 -0
  42. data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +7 -1
  43. data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +50 -50
  44. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +8 -0
  45. metadata +25 -20
@@ -18,13 +18,13 @@ module Spaceship
18
18
  #
19
19
 
20
20
  def get_apps(filter: {}, includes: nil, limit: nil, sort: nil)
21
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
22
- @test_flight_request_client.get("apps", params)
21
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
22
+ test_flight_request_client.get("apps", params)
23
23
  end
24
24
 
25
25
  def get_app(app_id: nil, includes: nil)
26
- params = @test_flight_request_client.build_params(filter: nil, includes: includes, limit: nil, sort: nil)
27
- @test_flight_request_client.get("apps/#{app_id}", params)
26
+ params = test_flight_request_client.build_params(filter: nil, includes: includes, limit: nil, sort: nil)
27
+ test_flight_request_client.get("apps/#{app_id}", params)
28
28
  end
29
29
 
30
30
  #
@@ -32,8 +32,8 @@ module Spaceship
32
32
  #
33
33
 
34
34
  def get_beta_app_localizations(filter: {}, includes: nil, limit: nil, sort: nil)
35
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
36
- @test_flight_request_client.get("betaAppLocalizations", params)
35
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
36
+ test_flight_request_client.get("betaAppLocalizations", params)
37
37
  end
38
38
 
39
39
  def post_beta_app_localizations(app_id: nil, attributes: {})
@@ -52,7 +52,7 @@ module Spaceship
52
52
  }
53
53
  }
54
54
 
55
- @test_flight_request_client.post("betaAppLocalizations", body)
55
+ test_flight_request_client.post("betaAppLocalizations", body)
56
56
  end
57
57
 
58
58
  def patch_beta_app_localizations(localization_id: nil, attributes: {})
@@ -64,7 +64,7 @@ module Spaceship
64
64
  }
65
65
  }
66
66
 
67
- @test_flight_request_client.patch("betaAppLocalizations/#{localization_id}", body)
67
+ test_flight_request_client.patch("betaAppLocalizations/#{localization_id}", body)
68
68
  end
69
69
 
70
70
  #
@@ -72,8 +72,8 @@ module Spaceship
72
72
  #
73
73
 
74
74
  def get_beta_app_review_detail(filter: {}, includes: nil, limit: nil, sort: nil)
75
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
76
- @test_flight_request_client.get("betaAppReviewDetails", params)
75
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
76
+ test_flight_request_client.get("betaAppReviewDetails", params)
77
77
  end
78
78
 
79
79
  def patch_beta_app_review_detail(app_id: nil, attributes: {})
@@ -85,7 +85,7 @@ module Spaceship
85
85
  }
86
86
  }
87
87
 
88
- @test_flight_request_client.patch("betaAppReviewDetails/#{app_id}", body)
88
+ test_flight_request_client.patch("betaAppReviewDetails/#{app_id}", body)
89
89
  end
90
90
 
91
91
  #
@@ -93,8 +93,8 @@ module Spaceship
93
93
  #
94
94
 
95
95
  def get_beta_app_review_submissions(filter: {}, includes: nil, limit: nil, sort: nil, cursor: nil)
96
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort, cursor: cursor)
97
- @test_flight_request_client.get("betaAppReviewSubmissions", params)
96
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort, cursor: cursor)
97
+ test_flight_request_client.get("betaAppReviewSubmissions", params)
98
98
  end
99
99
 
100
100
  def post_beta_app_review_submissions(build_id: nil)
@@ -112,12 +112,12 @@ module Spaceship
112
112
  }
113
113
  }
114
114
 
115
- @test_flight_request_client.post("betaAppReviewSubmissions", body)
115
+ test_flight_request_client.post("betaAppReviewSubmissions", body)
116
116
  end
117
117
 
118
118
  def delete_beta_app_review_submission(beta_app_review_submission_id: nil)
119
- params = @test_flight_request_client.build_params(filter: nil, includes: nil, limit: nil, sort: nil, cursor: nil)
120
- @test_flight_request_client.delete("betaAppReviewSubmissions/#{beta_app_review_submission_id}", params)
119
+ params = test_flight_request_client.build_params(filter: nil, includes: nil, limit: nil, sort: nil, cursor: nil)
120
+ test_flight_request_client.delete("betaAppReviewSubmissions/#{beta_app_review_submission_id}", params)
121
121
  end
122
122
 
123
123
  #
@@ -125,8 +125,8 @@ module Spaceship
125
125
  #
126
126
 
127
127
  def get_beta_build_localizations(filter: {}, includes: nil, limit: nil, sort: nil)
128
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
129
- @test_flight_request_client.get("betaBuildLocalizations", params)
128
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
129
+ test_flight_request_client.get("betaBuildLocalizations", params)
130
130
  end
131
131
 
132
132
  def post_beta_build_localizations(build_id: nil, attributes: {})
@@ -145,7 +145,7 @@ module Spaceship
145
145
  }
146
146
  }
147
147
 
148
- @test_flight_request_client.post("betaBuildLocalizations", body)
148
+ test_flight_request_client.post("betaBuildLocalizations", body)
149
149
  end
150
150
 
151
151
  def patch_beta_build_localizations(localization_id: nil, feedbackEmail: nil, attributes: {})
@@ -157,7 +157,7 @@ module Spaceship
157
157
  }
158
158
  }
159
159
 
160
- @test_flight_request_client.patch("betaBuildLocalizations/#{localization_id}", body)
160
+ test_flight_request_client.patch("betaBuildLocalizations/#{localization_id}", body)
161
161
  end
162
162
 
163
163
  #
@@ -165,8 +165,8 @@ module Spaceship
165
165
  #
166
166
 
167
167
  def get_beta_build_metrics(filter: {}, includes: nil, limit: nil, sort: nil)
168
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
169
- @test_flight_request_client.get("betaBuildMetrics", params)
168
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
169
+ test_flight_request_client.get("betaBuildMetrics", params)
170
170
  end
171
171
 
172
172
  #
@@ -174,8 +174,8 @@ module Spaceship
174
174
  #
175
175
 
176
176
  def get_beta_groups(filter: {}, includes: nil, limit: nil, sort: nil)
177
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
178
- @test_flight_request_client.get("betaGroups", params)
177
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
178
+ test_flight_request_client.get("betaGroups", params)
179
179
  end
180
180
 
181
181
  def add_beta_groups_to_build(build_id: nil, beta_group_ids: [])
@@ -188,7 +188,7 @@ module Spaceship
188
188
  end
189
189
  }
190
190
 
191
- @test_flight_request_client.post("builds/#{build_id}/relationships/betaGroups", body)
191
+ test_flight_request_client.post("builds/#{build_id}/relationships/betaGroups", body)
192
192
  end
193
193
 
194
194
  def create_beta_group(app_id: nil, group_name: nil, public_link_enabled: false, public_link_limit: 10_000, public_link_limit_enabled: false)
@@ -211,7 +211,7 @@ module Spaceship
211
211
  type: "betaGroups"
212
212
  }
213
213
  }
214
- @test_flight_request_client.post("betaGroups", body)
214
+ test_flight_request_client.post("betaGroups", body)
215
215
  end
216
216
 
217
217
  #
@@ -219,8 +219,8 @@ module Spaceship
219
219
  #
220
220
 
221
221
  def get_beta_testers(filter: {}, includes: nil, limit: nil, sort: nil)
222
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
223
- @test_flight_request_client.get("betaTesters", params)
222
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
223
+ test_flight_request_client.get("betaTesters", params)
224
224
  end
225
225
 
226
226
  # beta_testers - [{email: "", firstName: "", lastName: ""}]
@@ -248,7 +248,7 @@ module Spaceship
248
248
  }
249
249
  }
250
250
 
251
- @test_flight_request_client.post("bulkBetaTesterAssignments", body)
251
+ test_flight_request_client.post("bulkBetaTesterAssignments", body)
252
252
  end
253
253
 
254
254
  def delete_beta_tester_from_apps(beta_tester_id: nil, app_ids: [])
@@ -261,7 +261,7 @@ module Spaceship
261
261
  end
262
262
  }
263
263
 
264
- @test_flight_request_client.delete("betaTesters/#{beta_tester_id}/relationships/apps", nil, body)
264
+ test_flight_request_client.delete("betaTesters/#{beta_tester_id}/relationships/apps", nil, body)
265
265
  end
266
266
 
267
267
  def delete_beta_tester_from_beta_groups(beta_tester_id: nil, beta_group_ids: [])
@@ -274,7 +274,7 @@ module Spaceship
274
274
  end
275
275
  }
276
276
 
277
- @test_flight_request_client.delete("betaTesters/#{beta_tester_id}/relationships/betaGroups", nil, body)
277
+ test_flight_request_client.delete("betaTesters/#{beta_tester_id}/relationships/betaGroups", nil, body)
278
278
  end
279
279
 
280
280
  #
@@ -282,8 +282,8 @@ module Spaceship
282
282
  #
283
283
 
284
284
  def get_beta_tester_metrics(filter: {}, includes: nil, limit: nil, sort: nil)
285
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
286
- @test_flight_request_client.get("betaTesterMetrics", params)
285
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
286
+ test_flight_request_client.get("betaTesterMetrics", params)
287
287
  end
288
288
 
289
289
  #
@@ -291,17 +291,17 @@ module Spaceship
291
291
  #
292
292
 
293
293
  def get_builds(filter: {}, includes: "buildBetaDetail,betaBuildMetrics", limit: 10, sort: "uploadedDate", cursor: nil)
294
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort, cursor: cursor)
295
- @test_flight_request_client.get("builds", params)
294
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort, cursor: cursor)
295
+ test_flight_request_client.get("builds", params)
296
296
  end
297
297
 
298
298
  def get_build(build_id: nil, app_store_version_id: nil, includes: nil)
299
299
  if build_id
300
- params = @test_flight_request_client.build_params(filter: nil, includes: includes, limit: nil, sort: nil, cursor: nil)
301
- return @test_flight_request_client.get("builds/#{build_id}", params)
300
+ params = test_flight_request_client.build_params(filter: nil, includes: includes, limit: nil, sort: nil, cursor: nil)
301
+ return test_flight_request_client.get("builds/#{build_id}", params)
302
302
  elsif app_store_version_id
303
- params = @test_flight_request_client.build_params(filter: nil, includes: includes, limit: nil, sort: nil, cursor: nil)
304
- return @test_flight_request_client.get("appStoreVersions/#{app_store_version_id}/build", params)
303
+ params = test_flight_request_client.build_params(filter: nil, includes: includes, limit: nil, sort: nil, cursor: nil)
304
+ return test_flight_request_client.get("appStoreVersions/#{app_store_version_id}/build", params)
305
305
  else
306
306
  return nil
307
307
  end
@@ -316,7 +316,7 @@ module Spaceship
316
316
  }
317
317
  }
318
318
 
319
- @test_flight_request_client.patch("builds/#{build_id}", body)
319
+ test_flight_request_client.patch("builds/#{build_id}", body)
320
320
  end
321
321
 
322
322
  #
@@ -324,8 +324,8 @@ module Spaceship
324
324
  #
325
325
 
326
326
  def get_build_beta_details(filter: {}, includes: nil, limit: nil, sort: nil)
327
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
328
- @test_flight_request_client.get("buildBetaDetails", params)
327
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
328
+ test_flight_request_client.get("buildBetaDetails", params)
329
329
  end
330
330
 
331
331
  def patch_build_beta_details(build_beta_details_id: nil, attributes: {})
@@ -337,7 +337,7 @@ module Spaceship
337
337
  }
338
338
  }
339
339
 
340
- @test_flight_request_client.patch("buildBetaDetails/#{build_beta_details_id}", body)
340
+ test_flight_request_client.patch("buildBetaDetails/#{build_beta_details_id}", body)
341
341
  end
342
342
 
343
343
  #
@@ -345,8 +345,8 @@ module Spaceship
345
345
  #
346
346
 
347
347
  def get_build_deliveries(filter: {}, includes: nil, limit: nil, sort: nil)
348
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
349
- @test_flight_request_client.get("buildDeliveries", params)
348
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
349
+ test_flight_request_client.get("buildDeliveries", params)
350
350
  end
351
351
 
352
352
  #
@@ -354,8 +354,8 @@ module Spaceship
354
354
  #
355
355
 
356
356
  def get_pre_release_versions(filter: {}, includes: nil, limit: nil, sort: nil)
357
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
358
- @test_flight_request_client.get("preReleaseVersions", params)
357
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
358
+ test_flight_request_client.get("preReleaseVersions", params)
359
359
  end
360
360
 
361
361
  #
@@ -363,14 +363,14 @@ module Spaceship
363
363
  #
364
364
 
365
365
  def get_beta_feedback(filter: {}, includes: nil, limit: nil, sort: nil)
366
- params = @test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
367
- @test_flight_request_client.get("betaFeedbacks", params)
366
+ params = test_flight_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
367
+ test_flight_request_client.get("betaFeedbacks", params)
368
368
  end
369
369
 
370
370
  def delete_beta_feedback(feedback_id: nil)
371
371
  raise "Feedback id is nil" if feedback_id.nil?
372
372
 
373
- @test_flight_request_client.delete("betaFeedbacks/#{feedback_id}")
373
+ test_flight_request_client.delete("betaFeedbacks/#{feedback_id}")
374
374
  end
375
375
  end
376
376
  end
@@ -308,6 +308,14 @@ module Spaceship
308
308
  tunes_request_client.get("appPrices", params)
309
309
  end
310
310
 
311
+ #
312
+ # appPricePoints
313
+ #
314
+ def get_app_price_points(filter: {}, includes: nil, limit: nil, sort: nil)
315
+ params = Client.instance.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
316
+ Client.instance.get("appPricePoints", params)
317
+ end
318
+
311
319
  #
312
320
  # appReviewAttachments
313
321
  #
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.157.2
4
+ version: 2.157.3
5
5
  platform: ruby
6
6
  authors:
7
- - Danielle Tomlinson
8
- - Daniel Jankowski
9
7
  - Maksym Grebenets
10
- - Jimmy Dee
8
+ - Daniel Jankowski
9
+ - Aaron Brager
11
10
  - Matthew Ellis
12
- - Andrew McBurney
11
+ - Max Ott
12
+ - Jimmy Dee
13
13
  - Helmut Januschka
14
- - Aaron Brager
15
14
  - Felix Krause
16
- - Manu Wallner
17
- - Iulian Onofrei
18
- - Stefan Natchev
19
- - Luka Mirosevic
20
- - Jérôme Lacoste
21
- - Max Ott
22
- - Olivier Halligon
15
+ - Joshua Liebowitz
23
16
  - Kohki Miki
17
+ - Luka Mirosevic
18
+ - Josh Holtz
19
+ - Manu Wallner
24
20
  - Fumiya Nakamura
25
21
  - Jan Piotrowski
22
+ - Andrew McBurney
23
+ - Stefan Natchev
24
+ - Iulian Onofrei
25
+ - Olivier Halligon
26
26
  - Jorge Revuelta H
27
- - Josh Holtz
28
- - Joshua Liebowitz
27
+ - Jérôme Lacoste
28
+ - Danielle Tomlinson
29
29
  autorequire:
30
30
  bindir: bin
31
31
  cert_chain: []
32
- date: 2020-08-28 00:00:00.000000000 Z
32
+ date: 2020-09-04 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: slack-notifier
@@ -980,10 +980,12 @@ files:
980
980
  - fastlane/lib/assets/s3_plist_template.erb
981
981
  - fastlane/lib/assets/s3_version_template.erb
982
982
  - fastlane/lib/fastlane.rb
983
- - fastlane/lib/fastlane/.erb_template_helper.rb.swp
984
983
  - fastlane/lib/fastlane/action.rb
985
984
  - fastlane/lib/fastlane/action_collector.rb
986
- - fastlane/lib/fastlane/actions/.git_commit.rb.swp
985
+ - fastlane/lib/fastlane/actions/.ensure_git_status_clean.rb.swp
986
+ - fastlane/lib/fastlane/actions/.hockey.rb.swp
987
+ - fastlane/lib/fastlane/actions/.slack.rb.swp
988
+ - fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp
987
989
  - fastlane/lib/fastlane/actions/README.md
988
990
  - fastlane/lib/fastlane/actions/actions_helper.rb
989
991
  - fastlane/lib/fastlane/actions/adb.rb
@@ -1322,6 +1324,7 @@ files:
1322
1324
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
1323
1325
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
1324
1326
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
1327
+ - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate
1325
1328
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
1326
1329
  - fastlane/swift/FastlaneSwiftRunner/README.txt
1327
1330
  - fastlane/swift/Gymfile.swift
@@ -1481,6 +1484,7 @@ files:
1481
1484
  - pem/lib/pem/options.rb
1482
1485
  - pilot/README.md
1483
1486
  - pilot/lib/pilot.rb
1487
+ - pilot/lib/pilot/.manager.rb.swp
1484
1488
  - pilot/lib/pilot/build_manager.rb
1485
1489
  - pilot/lib/pilot/commands_generator.rb
1486
1490
  - pilot/lib/pilot/features.rb
@@ -1608,11 +1612,11 @@ files:
1608
1612
  - spaceship/lib/assets/languageMapping.json
1609
1613
  - spaceship/lib/assets/languageMappingReadable.json
1610
1614
  - spaceship/lib/spaceship.rb
1611
- - spaceship/lib/spaceship/.DS_Store
1612
1615
  - spaceship/lib/spaceship/base.rb
1613
1616
  - spaceship/lib/spaceship/client.rb
1614
1617
  - spaceship/lib/spaceship/commands_generator.rb
1615
1618
  - spaceship/lib/spaceship/connect_api.rb
1619
+ - spaceship/lib/spaceship/connect_api/.DS_Store
1616
1620
  - spaceship/lib/spaceship/connect_api/api_client.rb
1617
1621
  - spaceship/lib/spaceship/connect_api/client.rb
1618
1622
  - spaceship/lib/spaceship/connect_api/file_uploader.rb
@@ -1625,6 +1629,7 @@ files:
1625
1629
  - spaceship/lib/spaceship/connect_api/models/app_preview.rb
1626
1630
  - spaceship/lib/spaceship/connect_api/models/app_preview_set.rb
1627
1631
  - spaceship/lib/spaceship/connect_api/models/app_price.rb
1632
+ - spaceship/lib/spaceship/connect_api/models/app_price_point.rb
1628
1633
  - spaceship/lib/spaceship/connect_api/models/app_price_tier.rb
1629
1634
  - spaceship/lib/spaceship/connect_api/models/app_screenshot.rb
1630
1635
  - spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb
@@ -1822,7 +1827,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1822
1827
  - !ruby/object:Gem::Version
1823
1828
  version: '0'
1824
1829
  requirements: []
1825
- rubygems_version: 3.0.6
1830
+ rubygems_version: 3.0.3
1826
1831
  signing_key:
1827
1832
  specification_version: 4
1828
1833
  summary: The easiest way to automate beta deployments and releases for your iOS and