fastlane 2.131.0 → 2.132.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +76 -76
  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/fastlane/lib/fastlane/actions/app_store_build_number.rb +10 -2
  7. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +1 -1
  8. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +23 -4
  9. data/fastlane/lib/fastlane/actions/ensure_env_vars.rb +58 -0
  10. data/fastlane/lib/fastlane/actions/get_version_number.rb +3 -0
  11. data/fastlane/lib/fastlane/actions/onesignal.rb +59 -29
  12. data/fastlane/lib/fastlane/actions/pod_push.rb +10 -1
  13. data/fastlane/lib/fastlane/actions/register_devices.rb +1 -1
  14. data/fastlane/lib/fastlane/fast_file.rb +7 -2
  15. data/fastlane/lib/fastlane/setup/setup_android.rb +1 -1
  16. data/fastlane/lib/fastlane/version.rb +1 -1
  17. data/fastlane/swift/Deliverfile.swift +1 -1
  18. data/fastlane/swift/Fastlane.swift +33 -7
  19. data/fastlane/swift/Gymfile.swift +1 -1
  20. data/fastlane/swift/Matchfile.swift +1 -1
  21. data/fastlane/swift/MatchfileProtocol.swift +5 -1
  22. data/fastlane/swift/Precheckfile.swift +1 -1
  23. data/fastlane/swift/Scanfile.swift +1 -1
  24. data/fastlane/swift/Screengrabfile.swift +1 -1
  25. data/fastlane/swift/Snapshotfile.swift +1 -1
  26. data/fastlane/swift/SnapshotfileProtocol.swift +3 -1
  27. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +1 -3
  28. data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +3 -2
  29. data/frameit/lib/frameit/screenshot.rb +4 -0
  30. data/match/lib/match/generator.rb +1 -0
  31. data/match/lib/match/module.rb +2 -0
  32. data/match/lib/match/nuke.rb +5 -5
  33. data/match/lib/match/options.rb +12 -0
  34. data/match/lib/match/runner.rb +2 -0
  35. data/match/lib/match/storage/git_storage.rb +8 -2
  36. data/match/lib/match/storage/google_cloud_storage.rb +82 -33
  37. data/produce/lib/produce/service.rb +7 -1
  38. data/sigh/lib/sigh/runner.rb +13 -5
  39. data/snapshot/lib/snapshot/options.rb +5 -0
  40. data/snapshot/lib/snapshot/reports_generator.rb +3 -0
  41. data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +2 -0
  42. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +1 -1
  43. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +16 -1
  44. data/spaceship/lib/spaceship/connect_api/models/app.rb +6 -6
  45. data/spaceship/lib/spaceship/connect_api/models/build.rb +3 -3
  46. data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +1 -1
  47. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +1 -1
  48. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +1 -1
  49. data/spaceship/lib/spaceship/connect_api/models/device.rb +1 -1
  50. data/spaceship/lib/spaceship/connect_api/models/profile.rb +1 -1
  51. data/spaceship/lib/spaceship/portal/.certificate.rb.swp +0 -0
  52. data/spaceship/lib/spaceship/portal/provisioning_profile.rb +1 -1
  53. data/spaceship/lib/spaceship/tunes/app_version.rb +4 -0
  54. data/spaceship/lib/spaceship/tunes/application.rb +4 -0
  55. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +10 -2
  56. data/spaceship/lib/spaceship/tunes/tunes_client.rb +25 -0
  57. metadata +48 -45
@@ -155,27 +155,35 @@ module Sigh
155
155
  case Sigh.config[:platform].to_s
156
156
  when 'ios', 'tvos'
157
157
  if profile_type == Spaceship.provisioning_profile.Development
158
- certificates = Spaceship.certificate.development.all
158
+ certificates = Spaceship.certificate.development.all +
159
+ Spaceship.certificate.apple_development.all
159
160
  elsif profile_type == Spaceship.provisioning_profile.InHouse
161
+ # Enterprise accounts don't have access to Apple Distribution certificates
160
162
  certificates = Spaceship.certificate.in_house.all
161
163
  # handles case where the desired certificate type is adhoc but the account is an enterprise account
162
164
  # the apple dev portal api has a weird quirk in it where if you query for distribution certificates
163
165
  # for enterprise accounts, you get nothing back even if they exist.
164
166
  elsif profile_type == Spaceship.provisioning_profile.AdHoc && Spaceship.client && Spaceship.client.in_house?
167
+ # Enterprise accounts don't have access to Apple Distribution certificates
165
168
  certificates = Spaceship.certificate.in_house.all
166
169
  else
167
- certificates = Spaceship.certificate.production.all # Ad hoc or App Store
170
+ # Ad hoc or App Store
171
+ certificates = Spaceship.certificate.production.all +
172
+ Spaceship.certificate.apple_distribution.all
168
173
  end
169
174
 
170
175
  when 'macos'
171
176
  if profile_type == Spaceship.provisioning_profile.Development
172
- certificates = Spaceship.certificate.mac_development.all
177
+ certificates = Spaceship.certificate.mac_development.all +
178
+ Spaceship.certificate.apple_development.all
173
179
  elsif profile_type == Spaceship.provisioning_profile.AppStore
174
- certificates = Spaceship.certificate.mac_app_distribution.all
180
+ certificates = Spaceship.certificate.mac_app_distribution.all +
181
+ Spaceship.certificate.apple_distribution.all
175
182
  elsif profile_type == Spaceship.provisioning_profile.Direct
176
183
  certificates = Spaceship.certificate.developer_id_application.all
177
184
  else
178
- certificates = Spaceship.certificate.mac_app_distribution.all
185
+ certificates = Spaceship.certificate.mac_app_distribution.all +
186
+ Spaceship.certificate.apple_distribution.all
179
187
  end
180
188
  end
181
189
 
@@ -116,6 +116,11 @@ module Snapshot
116
116
  description: "Enabling this option will configure the Simulator's system language",
117
117
  default_value: false,
118
118
  is_string: false),
119
+ FastlaneCore::ConfigItem.new(key: :dark_mode,
120
+ env_name: 'SNAPSHOT_DARK_MODE',
121
+ description: "Enabling this option will configure the Simulator to be in dark mode (false for light, true for dark)",
122
+ optional: true,
123
+ type: Boolean),
119
124
  FastlaneCore::ConfigItem.new(key: :app_identifier,
120
125
  env_name: 'SNAPSHOT_APP_IDENTIFIER',
121
126
  short_option: "-a",
@@ -77,6 +77,9 @@ module Snapshot
77
77
  {
78
78
  # snapshot in Xcode 9 saves screenshots with the SIMULATOR_DEVICE_NAME
79
79
  # which includes spaces
80
+ 'iPhone 11 Pro Max' => "iPhone 11 Pro Max",
81
+ 'iPhone 11 Pro' => "iPhone 11 Pro",
82
+ 'iPhone 11' => "iPhone 11",
80
83
  'iPhone XS Max' => "iPhone XS Max",
81
84
  'iPhone XS' => "iPhone XS",
82
85
  'iPhone XR' => "iPhone XR",
@@ -8,6 +8,7 @@ module Snapshot
8
8
  attr_accessor :clean
9
9
  attr_accessor :erase_simulator
10
10
  attr_accessor :localize_simulator
11
+ attr_accessor :dark_mode
11
12
  attr_accessor :reinstall_app
12
13
  attr_accessor :app_identifier
13
14
 
@@ -32,6 +33,7 @@ module Snapshot
32
33
  @clean = snapshot_config[:clean]
33
34
  @erase_simulator = snapshot_config[:erase_simulator]
34
35
  @localize_simulator = snapshot_config[:localize_simulator]
36
+ @dark_mode = snapshot_config[:dark_mode]
35
37
  @reinstall_app = snapshot_config[:reinstall_app]
36
38
  @app_identifier = snapshot_config[:app_identifier]
37
39
  @number_of_retries = snapshot_config[:number_of_retries]
@@ -190,7 +190,7 @@ module Snapshot
190
190
  hash[name] = ["No tests were executed"]
191
191
  else
192
192
  tests = Array(summary.data.first[:tests])
193
- hash[name] = tests.map { |test| Array(test[:failures]).map { |failure| failure[:failure_message] } }.flatten
193
+ hash[name] = tests.flat_map { |test| Array(test[:failures]).map { |failure| failure[:failure_message] } }
194
194
  end
195
195
  end
196
196
  end
@@ -55,11 +55,14 @@ module Snapshot
55
55
  Fixes::HardwareKeyboardFix.patch
56
56
 
57
57
  device_types.each do |type|
58
- if launcher_config.erase_simulator || launcher_config.localize_simulator
58
+ if launcher_config.erase_simulator || launcher_config.localize_simulator || !launcher_config.dark_mode.nil?
59
59
  erase_simulator(type)
60
60
  if launcher_config.localize_simulator
61
61
  localize_simulator(type, language, locale)
62
62
  end
63
+ unless launcher_config.dark_mode.nil?
64
+ interface_style(type, launcher_config.dark_mode)
65
+ end
63
66
  elsif launcher_config.reinstall_app
64
67
  # no need to reinstall if device has been erased
65
68
  uninstall_app(type)
@@ -124,6 +127,18 @@ module Snapshot
124
127
  end
125
128
  end
126
129
 
130
+ def interface_style(device_type, dark_mode)
131
+ device_udid = TestCommandGenerator.device_udid(device_type)
132
+ if device_udid
133
+ plist = {
134
+ UserInterfaceStyleMode: (dark_mode ? 2 : 1)
135
+ }
136
+ UI.message("Setting interface style #{device_type} (UserInterfaceStyleMode=#{dark_mode})")
137
+ plist_path = "#{ENV['HOME']}/Library/Developer/CoreSimulator/Devices/#{device_udid}/data/Library/Preferences/com.apple.uikitservices.userInterfaceStyleMode.plist"
138
+ File.write(plist_path, Plist::Emit.dump(plist))
139
+ end
140
+ end
141
+
127
142
  def copy_simulator_logs(device_names, language, locale, launch_arguments)
128
143
  return unless launcher_config.output_simulator_logs
129
144
 
@@ -32,7 +32,7 @@ module Spaceship
32
32
 
33
33
  def self.all(filter: {}, includes: nil, limit: nil, sort: nil)
34
34
  resps = Spaceship::ConnectAPI.get_apps(filter: filter, includes: includes, limit: limit, sort: sort).all_pages
35
- return resps.map(&:to_models).flatten
35
+ return resps.flat_map(&:to_models)
36
36
  end
37
37
 
38
38
  def self.find(bundle_id)
@@ -54,7 +54,7 @@ module Spaceship
54
54
  filter[:apps] = id
55
55
 
56
56
  resps = Spaceship::ConnectAPI.get_beta_testers(filter: filter, includes: includes, limit: limit, sort: sort).all_pages
57
- return resps.map(&:to_models).flatten
57
+ return resps.flat_map(&:to_models)
58
58
  end
59
59
 
60
60
  #
@@ -66,7 +66,7 @@ module Spaceship
66
66
  filter[:app] = id
67
67
 
68
68
  resps = Spaceship::ConnectAPI.get_builds(filter: filter, includes: includes, limit: limit, sort: sort).all_pages
69
- return resps.map(&:to_models).flatten
69
+ return resps.flat_map(&:to_models)
70
70
  end
71
71
 
72
72
  def get_build_deliveries(filter: {}, includes: nil, limit: nil, sort: nil)
@@ -74,7 +74,7 @@ module Spaceship
74
74
  filter[:app] = id
75
75
 
76
76
  resps = Spaceship::ConnectAPI.get_build_deliveries(filter: filter, includes: includes, limit: limit, sort: sort).all_pages
77
- return resps.map(&:to_models).flatten
77
+ return resps.flat_map(&:to_models)
78
78
  end
79
79
 
80
80
  def get_beta_app_localizations(filter: {}, includes: nil, limit: nil, sort: nil)
@@ -82,7 +82,7 @@ module Spaceship
82
82
  filter[:app] = id
83
83
 
84
84
  resps = Spaceship::ConnectAPI.get_beta_app_localizations(filter: filter, includes: includes, limit: limit, sort: sort).all_pages
85
- return resps.map(&:to_models).flatten
85
+ return resps.flat_map(&:to_models)
86
86
  end
87
87
 
88
88
  def get_beta_groups(filter: {}, includes: nil, limit: nil, sort: nil)
@@ -90,7 +90,7 @@ module Spaceship
90
90
  filter[:app] = id
91
91
 
92
92
  resps = Spaceship::ConnectAPI.get_beta_groups(filter: filter, includes: includes, limit: limit, sort: sort).all_pages
93
- return resps.map(&:to_models).flatten
93
+ return resps.flat_map(&:to_models)
94
94
  end
95
95
  end
96
96
  end
@@ -109,7 +109,7 @@ module Spaceship
109
109
  sort: sort,
110
110
  limit: limit
111
111
  ).all_pages
112
- models = resps.map(&:to_models).flatten
112
+ models = resps.flat_map(&:to_models)
113
113
 
114
114
  # Filtering after models are fetched since there is no way to do this in a query param filter
115
115
  if platform
@@ -138,7 +138,7 @@ module Spaceship
138
138
  sort: sort,
139
139
  limit: limit
140
140
  ).all_pages
141
- return resps.map(&:to_models).flatten
141
+ return resps.flat_map(&:to_models)
142
142
  end
143
143
 
144
144
  def get_build_beta_details(filter: {}, includes: nil, limit: nil, sort: nil)
@@ -148,7 +148,7 @@ module Spaceship
148
148
  sort: sort,
149
149
  limit: limit
150
150
  ).all_pages
151
- return resps.map(&:to_models).flatten
151
+ return resps.flat_map(&:to_models)
152
152
  end
153
153
 
154
154
  def post_beta_app_review_submission
@@ -29,7 +29,7 @@ module Spaceship
29
29
  filter: { app: app_id, cfBundleShortVersionString: version, cfBundleVersion: build_number },
30
30
  limit: 1
31
31
  ).all_pages
32
- return resps.map(&:to_models).flatten
32
+ return resps.flat_map(&:to_models)
33
33
  end
34
34
  end
35
35
  end
@@ -35,7 +35,7 @@ module Spaceship
35
35
 
36
36
  def self.all(filter: {}, includes: nil, limit: nil, sort: nil)
37
37
  resps = Spaceship::ConnectAPI.get_bundle_ids(filter: filter, includes: includes).all_pages
38
- return resps.map(&:to_models).flatten
38
+ return resps.flat_map(&:to_models)
39
39
  end
40
40
 
41
41
  def self.get(bundle_id_id: nil, includes: nil)
@@ -41,7 +41,7 @@ module Spaceship
41
41
 
42
42
  def self.all(filter: {}, includes: nil, limit: nil, sort: nil)
43
43
  resps = Spaceship::ConnectAPI.get_certificates(filter: filter, includes: includes).all_pages
44
- return resps.map(&:to_models).flatten
44
+ return resps.flat_map(&:to_models)
45
45
  end
46
46
  end
47
47
  end
@@ -46,7 +46,7 @@ module Spaceship
46
46
 
47
47
  def self.all(filter: {}, includes: nil, limit: nil, sort: nil)
48
48
  resps = Spaceship::ConnectAPI.get_devices(filter: filter, includes: includes).all_pages
49
- return resps.map(&:to_models).flatten
49
+ return resps.flat_map(&:to_models)
50
50
  end
51
51
  end
52
52
  end
@@ -53,7 +53,7 @@ module Spaceship
53
53
 
54
54
  def self.all(filter: {}, includes: nil, limit: nil, sort: nil)
55
55
  resps = Spaceship::ConnectAPI.get_profiles(filter: filter, includes: includes).all_pages
56
- return resps.map(&:to_models).flatten
56
+ return resps.flat_map(&:to_models)
57
57
  end
58
58
  end
59
59
  end
@@ -457,7 +457,7 @@ module Spaceship
457
457
  devices.map(&:id),
458
458
  mac: mac?,
459
459
  sub_platform: tvos? ? 'tvOS' : nil,
460
- template_name: template_name
460
+ template_name: is_template_profile ? template.purpose_name : nil
461
461
  )
462
462
  end
463
463
 
@@ -192,6 +192,9 @@ module Spaceship
192
192
  # @return (Hash) Represents the trailers of this app version (read-only)
193
193
  attr_reader :trailers
194
194
 
195
+ # @return (Hash) A hash representing all in-app purchases that can get submitted with this version
196
+ attr_reader :in_app_purchases
197
+
195
198
  # @return (Hash) Represents the phased_release hash (read-only)
196
199
  # For now, please use the `toggle_phased_release` method and call `.save!`
197
200
  # as the API will probably change in the future
@@ -233,6 +236,7 @@ module Spaceship
233
236
  'supportsAppleWatch' => :supports_apple_watch,
234
237
  'versionId' => :version_id,
235
238
  'version.value' => :version,
239
+ 'submittableAddOns.value' => :in_app_purchases,
236
240
  'phasedRelease' => :phased_release,
237
241
 
238
242
  # GeoJson
@@ -158,6 +158,10 @@ module Spaceship
158
158
  client.get_resolution_center(apple_id, platform)
159
159
  end
160
160
 
161
+ def reply_resolution_center(app_id, platform, thread_id, version_id, version_number, from, message_body)
162
+ client.post_resolution_center(app_id, platform, thread_id, version_id, version_number, from, message_body)
163
+ end
164
+
161
165
  def ratings(version_id: '', storefront: '')
162
166
  attrs = client.get_ratings(apple_id, platform, version_id, storefront)
163
167
  attrs[:application] = self
@@ -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"
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.131.0
4
+ version: 2.132.0
5
5
  platform: ruby
6
6
  authors:
7
- - Andrew McBurney
8
- - Felix Krause
9
- - Kohki Miki
10
- - Jimmy Dee
11
- - Jorge Revuelta H
12
7
  - Jérôme Lacoste
13
- - Olivier Halligon
14
- - Stefan Natchev
15
- - Manu Wallner
16
- - Helmut Januschka
17
- - Danielle Tomlinson
18
- - Fumiya Nakamura
19
8
  - Luka Mirosevic
20
9
  - Josh Holtz
21
- - Joshua Liebowitz
22
- - Aaron Brager
23
- - Jan Piotrowski
24
10
  - Maksym Grebenets
11
+ - Danielle Tomlinson
12
+ - Andrew McBurney
25
13
  - Matthew Ellis
26
14
  - Iulian Onofrei
15
+ - Olivier Halligon
16
+ - Aaron Brager
17
+ - Fumiya Nakamura
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-09-12 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
@@ -1063,6 +1063,7 @@ files:
1063
1063
  - fastlane/lib/fastlane/actions/dsym_zip.rb
1064
1064
  - fastlane/lib/fastlane/actions/echo.rb
1065
1065
  - fastlane/lib/fastlane/actions/ensure_bundle_exec.rb
1066
+ - fastlane/lib/fastlane/actions/ensure_env_vars.rb
1066
1067
  - fastlane/lib/fastlane/actions/ensure_git_branch.rb
1067
1068
  - fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
1068
1069
  - fastlane/lib/fastlane/actions/ensure_no_debug_code.rb
@@ -1644,6 +1645,7 @@ files:
1644
1645
  - spaceship/lib/spaceship/launcher.rb
1645
1646
  - spaceship/lib/spaceship/module.rb
1646
1647
  - spaceship/lib/spaceship/playground.rb
1648
+ - spaceship/lib/spaceship/portal/.certificate.rb.swp
1647
1649
  - spaceship/lib/spaceship/portal/app.rb
1648
1650
  - spaceship/lib/spaceship/portal/app_group.rb
1649
1651
  - spaceship/lib/spaceship/portal/app_service.rb
@@ -1782,7 +1784,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1782
1784
  - !ruby/object:Gem::Version
1783
1785
  version: '0'
1784
1786
  requirements: []
1785
- rubygems_version: 3.0.3
1787
+ rubyforge_project:
1788
+ rubygems_version: 2.5.2.3
1786
1789
  signing_key:
1787
1790
  specification_version: 4
1788
1791
  summary: The easiest way to automate beta deployments and releases for your iOS and