fastlane 2.217.0 → 2.218.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +96 -96
  3. data/deliver/lib/deliver/app_screenshot.rb +2 -2
  4. data/deliver/lib/deliver/app_screenshot_iterator.rb +2 -2
  5. data/deliver/lib/deliver/detect_values.rb +1 -1
  6. data/deliver/lib/deliver/languages.rb +1 -1
  7. data/deliver/lib/deliver/loader.rb +2 -2
  8. data/deliver/lib/deliver/options.rb +4 -4
  9. data/deliver/lib/deliver/runner.rb +1 -1
  10. data/deliver/lib/deliver/sync_screenshots.rb +2 -2
  11. data/deliver/lib/deliver/upload_metadata.rb +4 -4
  12. data/deliver/lib/deliver/upload_price_tier.rb +1 -1
  13. data/deliver/lib/deliver/upload_screenshots.rb +3 -3
  14. data/fastlane/lib/fastlane/action.rb +1 -1
  15. data/fastlane/lib/fastlane/actions/appledoc.rb +1 -1
  16. data/fastlane/lib/fastlane/actions/apteligent.rb +1 -1
  17. data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +1 -1
  18. data/fastlane/lib/fastlane/actions/commit_github_file.rb +2 -2
  19. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +1 -1
  20. data/fastlane/lib/fastlane/actions/create_app_online.rb +1 -1
  21. data/fastlane/lib/fastlane/actions/create_pull_request.rb +1 -1
  22. data/fastlane/lib/fastlane/actions/get_certificates.rb +1 -1
  23. data/fastlane/lib/fastlane/actions/get_github_release.rb +1 -1
  24. data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +1 -1
  25. data/fastlane/lib/fastlane/actions/github_api.rb +1 -1
  26. data/fastlane/lib/fastlane/actions/gradle.rb +1 -1
  27. data/fastlane/lib/fastlane/actions/install_on_device.rb +1 -1
  28. data/fastlane/lib/fastlane/actions/ipa.rb +1 -1
  29. data/fastlane/lib/fastlane/actions/jazzy.rb +1 -1
  30. data/fastlane/lib/fastlane/actions/oclint.rb +3 -3
  31. data/fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb +2 -2
  32. data/fastlane/lib/fastlane/actions/restore_file.rb +1 -1
  33. data/fastlane/lib/fastlane/actions/set_github_release.rb +1 -1
  34. data/fastlane/lib/fastlane/actions/slather.rb +1 -1
  35. data/fastlane/lib/fastlane/actions/sonar.rb +12 -3
  36. data/fastlane/lib/fastlane/actions/splunkmint.rb +1 -1
  37. data/fastlane/lib/fastlane/actions/spm.rb +76 -2
  38. data/fastlane/lib/fastlane/actions/update_info_plist.rb +1 -1
  39. data/fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb +1 -1
  40. data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +1 -0
  41. data/fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb +1 -1
  42. data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +2 -2
  43. data/fastlane/lib/fastlane/actions/verify_build.rb +7 -4
  44. data/fastlane/lib/fastlane/actions/xcov.rb +1 -1
  45. data/fastlane/lib/fastlane/cli_tools_distributor.rb +1 -1
  46. data/fastlane/lib/fastlane/command_line_handler.rb +2 -4
  47. data/fastlane/lib/fastlane/commands_generator.rb +2 -2
  48. data/fastlane/lib/fastlane/fast_file.rb +1 -1
  49. data/fastlane/lib/fastlane/helper/dotenv_helper.rb +1 -1
  50. data/fastlane/lib/fastlane/junit_generator.rb +1 -1
  51. data/fastlane/lib/fastlane/lane_manager.rb +1 -2
  52. data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +0 -11
  53. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +5 -1
  54. data/fastlane/lib/fastlane/plugins/template/Gemfile.erb +27 -0
  55. data/fastlane/lib/fastlane/runner.rb +1 -1
  56. data/fastlane/lib/fastlane/setup/setup.rb +1 -1
  57. data/fastlane/lib/fastlane/swift_lane_manager.rb +2 -5
  58. data/fastlane/lib/fastlane/swift_runner_upgrader.rb +7 -4
  59. data/fastlane/lib/fastlane/version.rb +1 -1
  60. data/fastlane/swift/Actions.swift +1 -1
  61. data/fastlane/swift/Appfile.swift +1 -1
  62. data/fastlane/swift/ArgumentProcessor.swift +1 -1
  63. data/fastlane/swift/Atomic.swift +1 -1
  64. data/fastlane/swift/ControlCommand.swift +1 -1
  65. data/fastlane/swift/Deliverfile.swift +2 -2
  66. data/fastlane/swift/DeliverfileProtocol.swift +4 -4
  67. data/fastlane/swift/Fastlane.swift +79 -27
  68. data/fastlane/swift/Gymfile.swift +2 -2
  69. data/fastlane/swift/GymfileProtocol.swift +2 -2
  70. data/fastlane/swift/LaneFileProtocol.swift +5 -5
  71. data/fastlane/swift/MainProcess.swift +1 -1
  72. data/fastlane/swift/Matchfile.swift +2 -2
  73. data/fastlane/swift/MatchfileProtocol.swift +2 -2
  74. data/fastlane/swift/OptionalConfigValue.swift +1 -1
  75. data/fastlane/swift/Plugins.swift +1 -1
  76. data/fastlane/swift/Precheckfile.swift +2 -2
  77. data/fastlane/swift/PrecheckfileProtocol.swift +2 -2
  78. data/fastlane/swift/RubyCommand.swift +1 -1
  79. data/fastlane/swift/RubyCommandable.swift +1 -1
  80. data/fastlane/swift/Runner.swift +1 -1
  81. data/fastlane/swift/RunnerArgument.swift +1 -1
  82. data/fastlane/swift/Scanfile.swift +2 -2
  83. data/fastlane/swift/ScanfileProtocol.swift +2 -2
  84. data/fastlane/swift/Screengrabfile.swift +2 -2
  85. data/fastlane/swift/ScreengrabfileProtocol.swift +2 -2
  86. data/fastlane/swift/Snapshotfile.swift +2 -2
  87. data/fastlane/swift/SnapshotfileProtocol.swift +2 -2
  88. data/fastlane/swift/SocketClient.swift +1 -1
  89. data/fastlane/swift/SocketClientDelegateProtocol.swift +1 -1
  90. data/fastlane/swift/SocketResponse.swift +1 -1
  91. data/fastlane/swift/formatting/Brewfile.lock.json +18 -18
  92. data/fastlane/swift/main.swift +1 -1
  93. data/fastlane_core/lib/fastlane_core/build_watcher.rb +1 -1
  94. data/fastlane_core/lib/fastlane_core/cert_checker.rb +2 -2
  95. data/fastlane_core/lib/fastlane_core/configuration/configuration_file.rb +1 -1
  96. data/fastlane_core/lib/fastlane_core/device_manager.rb +17 -15
  97. data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +34 -12
  98. data/fastlane_core/lib/fastlane_core/helper.rb +1 -1
  99. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +5 -2
  100. data/fastlane_core/lib/fastlane_core/project.rb +3 -2
  101. data/fastlane_core/lib/fastlane_core/queue_worker.rb +1 -1
  102. data/fastlane_core/lib/fastlane_core/string_filters.rb +6 -6
  103. data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +2 -2
  104. data/frameit/lib/frameit/editor.rb +4 -4
  105. data/frameit/lib/frameit/trim_box.rb +1 -1
  106. data/gym/lib/gym/error_handler.rb +1 -1
  107. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +3 -3
  108. data/gym/lib/gym/runner.rb +1 -1
  109. data/gym/lib/gym/xcodebuild_fixes/README.md +1 -1
  110. data/match/lib/match/generator.rb +9 -1
  111. data/match/lib/match/module.rb +2 -1
  112. data/match/lib/match/portal_cache.rb +106 -0
  113. data/match/lib/match/portal_fetcher.rb +72 -0
  114. data/match/lib/match/profile_includes.rb +120 -0
  115. data/match/lib/match/runner.rb +70 -169
  116. data/match/lib/match/spaceship_ensure.rb +15 -11
  117. data/match/lib/match/storage/git_storage.rb +8 -3
  118. data/match/lib/match/storage/gitlab/client.rb +1 -1
  119. data/match/lib/match/storage/gitlab_secure_files.rb +1 -1
  120. data/match/lib/match/storage/interface.rb +1 -1
  121. data/match/lib/match/storage/s3_storage.rb +1 -1
  122. data/match/lib/match.rb +3 -0
  123. data/produce/lib/produce/itunes_connect.rb +1 -1
  124. data/scan/lib/scan/detect_values.rb +78 -20
  125. data/scan/lib/scan/options.rb +1 -1
  126. data/scan/lib/scan/runner.rb +1 -1
  127. data/screengrab/lib/screengrab/runner.rb +1 -1
  128. data/sigh/lib/assets/resign.sh +10 -10
  129. data/sigh/lib/sigh/commands_generator.rb +1 -1
  130. data/sigh/lib/sigh/module.rb +98 -0
  131. data/sigh/lib/sigh/options.rb +55 -1
  132. data/sigh/lib/sigh/resign.rb +1 -1
  133. data/sigh/lib/sigh/runner.rb +35 -111
  134. data/snapshot/lib/snapshot/setup.rb +2 -2
  135. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +23 -22
  136. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +2 -2
  137. data/spaceship/lib/spaceship/client.rb +1 -1
  138. data/spaceship/lib/spaceship/connect_api/api_client.rb +1 -1
  139. data/spaceship/lib/spaceship/connect_api/client.rb +4 -4
  140. data/spaceship/lib/spaceship/connect_api/models/app_preview_set.rb +2 -0
  141. data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +2 -2
  142. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +2 -2
  143. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +2 -2
  144. data/spaceship/lib/spaceship/connect_api/models/device.rb +82 -3
  145. data/spaceship/lib/spaceship/connect_api/models/profile.rb +3 -2
  146. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +3 -3
  147. data/spaceship/lib/spaceship/connect_api.rb +2 -0
  148. data/spaceship/lib/spaceship/portal/app.rb +1 -1
  149. data/spaceship/lib/spaceship/portal/app_group.rb +1 -1
  150. data/spaceship/lib/spaceship/test_flight/client.rb +1 -1
  151. data/spaceship/lib/spaceship/test_flight/tester.rb +1 -1
  152. data/spaceship/lib/spaceship/tunes/app_details.rb +2 -2
  153. data/spaceship/lib/spaceship/tunes/app_image.rb +1 -1
  154. data/spaceship/lib/spaceship/tunes/app_review_attachment.rb +1 -1
  155. data/spaceship/lib/spaceship/tunes/app_submission.rb +1 -1
  156. data/spaceship/lib/spaceship/tunes/app_version.rb +5 -5
  157. data/spaceship/lib/spaceship/tunes/build_details.rb +1 -1
  158. data/spaceship/lib/spaceship/tunes/iap.rb +3 -3
  159. data/spaceship/lib/spaceship/tunes/iap_detail.rb +2 -2
  160. data/spaceship/lib/spaceship/tunes/iap_families.rb +1 -1
  161. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +2 -2
  162. data/spaceship/lib/spaceship/tunes/iap_family_list.rb +1 -1
  163. data/spaceship/lib/spaceship/tunes/tunes_client.rb +2 -2
  164. data/supply/lib/supply/client.rb +1 -1
  165. data/supply/lib/supply/setup.rb +1 -1
  166. data/trainer/lib/trainer/junit_generator.rb +1 -1
  167. data/trainer/lib/trainer/test_parser.rb +1 -1
  168. metadata +26 -289
  169. data/fastlane/lib/fastlane/plugins/template/Gemfile +0 -6
@@ -33,7 +33,7 @@ module Spaceship
33
33
  end
34
34
 
35
35
  def setup
36
- # Since September 2015 we don't get the url any more, so we have to manually build it
36
+ # Since September 2015 we don't get the url anymore, so we have to manually build it
37
37
  self.url = "#{HOST_URL}/#{self.asset_token}"
38
38
  end
39
39
 
@@ -22,7 +22,7 @@ module Spaceship
22
22
 
23
23
  # To pass from the user
24
24
 
25
- # @deprecated Setted automatically by <tt>add_id_info_uses_idfa</tt> usage
25
+ # @deprecated Set automatically by <tt>add_id_info_uses_idfa</tt> usage
26
26
  # @return (Boolean) Ad ID Info - Limits ads tracking
27
27
  # <b>DEPRECATED:</b> Use <tt>add_id_info_uses_idfa</tt> instead.
28
28
  attr_accessor :add_id_info_limits_tracking
@@ -78,7 +78,7 @@ module Spaceship
78
78
  # @return (Spaceship::Tunes::AppImage) the structure containing information about the large watch icon (1024x1024)
79
79
  attr_accessor :watch_app_icon
80
80
 
81
- # @return (Integer) a unqiue ID for this version generated by App Store Connect
81
+ # @return (Integer) a unique ID for this version generated by App Store Connect
82
82
  attr_accessor :version_id
83
83
 
84
84
  # @return (Spaceship::Tunes::AppReviewAttachment) the structure containing information about the review attachment file
@@ -147,7 +147,7 @@ module Spaceship
147
147
  # @return (String) App Review Information Email Address
148
148
  attr_accessor :review_email
149
149
 
150
- # @return (Boolean) The checkbox that indiciates if a demo account
150
+ # @return (Boolean) The checkbox that indicates if a demo account
151
151
  # is needed. Is set automatically depending on if a user and pass
152
152
  # are set
153
153
  attr_reader :review_user_needed
@@ -546,7 +546,7 @@ module Spaceship
546
546
  device_lang_screenshots << new_screenshot
547
547
  end
548
548
  else # removing
549
- raise "cannot remove screenshot with non existing sort_order" unless existing_sort_orders.include?(sort_order)
549
+ raise "cannot remove screenshot with nonexistent sort_order" unless existing_sort_orders.include?(sort_order)
550
550
  device_lang_screenshots.delete_at(existing_sort_orders.index(sort_order))
551
551
  end
552
552
  setup_screenshots
@@ -624,7 +624,7 @@ module Spaceship
624
624
  device_lang_trailers << new_trailer
625
625
  end
626
626
  else # removing trailer
627
- raise "cannot remove trailer with non existing sort_order" unless existing_sort_orders.include?(sort_order)
627
+ raise "cannot remove trailer with nonexistent sort_order" unless existing_sort_orders.include?(sort_order)
628
628
  device_lang_trailers.delete_at(existing_sort_orders.index(sort_order))
629
629
  end
630
630
  setup_trailers
@@ -754,7 +754,7 @@ module Spaceship
754
754
  raise "#{device} isn't a valid device name" unless DisplayFamily.find(device)
755
755
 
756
756
  languages = raw_data_details.select { |d| d["language"] == language }
757
- # IDEA: better error for non existing language
757
+ # IDEA: better error for nonexistent language
758
758
  raise "#{language} isn't an activated language" unless languages.count > 0
759
759
  lang_details = languages[0]
760
760
  display_families = lang_details["displayFamilies"]["value"]
@@ -59,7 +59,7 @@ module Spaceship
59
59
 
60
60
  # @return (String) Platform of the app
61
61
  # @example 'ios'
62
- attr_accessor :app_plattform
62
+ attr_accessor :app_platform
63
63
 
64
64
  # @return (String) Device Requirements / Device Protocols
65
65
  attr_accessor :device_protocols
@@ -15,14 +15,14 @@ module Spaceship
15
15
  # @return (Spaceship::Tunes::Application) A reference to the application
16
16
  attr_accessor :application
17
17
 
18
- # @return (Spaceship::Tunes::IAPFamilies) A reference to the familie list
18
+ # @return (Spaceship::Tunes::IAPFamilies) A reference to the family list
19
19
  def families
20
20
  attrs = {}
21
21
  attrs[:application] = self.application
22
22
  Tunes::IAPFamilies.new(attrs)
23
23
  end
24
24
 
25
- # Creates a new In-App-Purchese on App Store Connect
25
+ # Creates a new In-App-Purchase on App Store Connect
26
26
  # if the In-App-Purchase already exists an exception is raised. Spaceship::TunesClient::ITunesConnectError
27
27
  # @param type (String): The Type of the in-app-purchase (Spaceship::Tunes::IAPType::CONSUMABLE,Spaceship::Tunes::IAPType::NON_CONSUMABLE,Spaceship::Tunes::IAPType::RECURRING,Spaceship::Tunes::IAPType::NON_RENEW_SUBSCRIPTION)
28
28
  # @param versions (Hash): a Hash of the languages
@@ -49,7 +49,7 @@ module Spaceship
49
49
  # tier: 1
50
50
  # }
51
51
  # ]
52
- # @param family_id (String) Only used on RECURRING purchases, assigns the In-App-Purchase to a specific familie
52
+ # @param family_id (String) Only used on RECURRING purchases, assigns the In-App-Purchase to a specific family
53
53
  # @param subscription_free_trial (String) Free Trial duration (1w,1m,3m....)
54
54
  # @param subscription_duration (String) 1w,1m.....
55
55
  # @param subscription_price_target (Hash) Only used on RECURRING purchases, used to set the
@@ -220,7 +220,7 @@ module Spaceship
220
220
  # if the iap is not yet cleared for sale
221
221
  # @return ([Spaceship::Tunes::PricingInfo]) An array of pricing infos from the same pricing tier
222
222
  # if the iap uses world wide pricing
223
- # @return ([Spaceship::Tunes::IAPSubscriptionPricingInfo]) An array of pricing infos from multple subscription pricing tiers
223
+ # @return ([Spaceship::Tunes::IAPSubscriptionPricingInfo]) An array of pricing infos from multiple subscription pricing tiers
224
224
  # if the iap uses territorial pricing
225
225
  def pricing_info
226
226
  return [] unless cleared_for_sale
@@ -230,7 +230,7 @@ module Spaceship
230
230
 
231
231
  private
232
232
 
233
- # Checks wheather an iap uses world wide or territorial pricing.
233
+ # Checks whether an iap uses world wide or territorial pricing.
234
234
  #
235
235
  # @return (true, false)
236
236
  def world_wide_pricing?
@@ -13,7 +13,7 @@ module Spaceship
13
13
  # @param name (String) Familyname
14
14
  # @param product_id (String) New Product's id
15
15
  # @param reference_name (String) Reference name of the new product
16
- # @param versions (Hash) Localized Familie names
16
+ # @param versions (Hash) Localized Family names
17
17
  # @example
18
18
  # versions: {
19
19
  # 'de-DE': {
@@ -9,13 +9,13 @@ module Spaceship
9
9
  # @return (String) the family name
10
10
  attr_accessor :name
11
11
 
12
- # @return (Intger) the family id
12
+ # @return (Integer) the family id
13
13
  attr_accessor :family_id
14
14
 
15
15
  # @return (Array) all linked in-app purchases of this family
16
16
  attr_accessor :linked_iaps
17
17
 
18
- # @return (Intger) amount of linked in-app purchases of this family (read-only)
18
+ # @return (Integer) amount of linked in-app purchases of this family (read-only)
19
19
  attr_accessor :iap_count
20
20
 
21
21
  # @return (Array) of all in-app purchase family details
@@ -9,7 +9,7 @@ module Spaceship
9
9
  # @return (String) the family name
10
10
  attr_accessor :name
11
11
 
12
- # @return (Intger) the Family Id
12
+ # @return (Integer) the Family Id
13
13
  attr_accessor :family_id
14
14
 
15
15
  attr_mapping({
@@ -659,7 +659,7 @@ module Spaceship
659
659
  r = request(:get, "ra/apps/#{app_id}/pricing/intervals")
660
660
  data = parse_response(r, 'data')
661
661
 
662
- # preOrder isn't needed for for the request and has some
662
+ # preOrder isn't needed for the request and has some
663
663
  # values that can cause a failure (invalid dates) so we are removing it
664
664
  data.delete('preOrder')
665
665
 
@@ -1011,7 +1011,7 @@ module Spaceship
1011
1011
  end
1012
1012
 
1013
1013
  #####################################################
1014
- # @!group CandiateBuilds
1014
+ # @!group CandidateBuilds
1015
1015
  #####################################################
1016
1016
 
1017
1017
  def candidate_builds(app_id, version_id)
@@ -330,7 +330,7 @@ module Supply
330
330
  # Download a Universal APK generated by Google for a particular version code
331
331
  #
332
332
  # @param [Supply::GeneratedUniversalApk] generated_universal_apk
333
- # The GeneratedUniversalApk object retrieved from a call to `list_generated_univeral_apks`
333
+ # The GeneratedUniversalApk object retrieved from a call to `list_generated_universal_apks`
334
334
  # @param [IO, String] destination
335
335
  # IO stream or filename to receive content download
336
336
  #
@@ -73,7 +73,7 @@ module Supply
73
73
  urls.each do |url|
74
74
  if IMAGES_TYPES.include?(image_type) # IMAGE_TYPES are stored in locale/images
75
75
  file_path = "#{path}.#{FastImage.type(url)}"
76
- else # SCREENSHOT_TYPES are stored in locale/images/<screensho_types>
76
+ else # SCREENSHOT_TYPES are stored in locale/images/<screenshot_types>
77
77
  file_path = File.join(path, "#{image_counter}_#{listing.language}.#{FastImage.type(url)}")
78
78
  end
79
79
 
@@ -17,7 +17,7 @@ module Trainer
17
17
  xml_path = File.join(lib_path, "lib/assets/junit.xml.erb")
18
18
  xml = ERB.new(File.read(xml_path), trim_mode: '<>').result(binding) # http://www.rrn.dk/rubys-erb-templating-system
19
19
 
20
- xml = xml.gsub('system_', 'system-').delete("\e") # Jenkins can not parse 'ESC' symbol
20
+ xml = xml.gsub('system_', 'system-').delete("\e") # Jenkins cannot parse 'ESC' symbol
21
21
 
22
22
  # We have to manually clear empty lines
23
23
  # They may contain white spaces
@@ -238,7 +238,7 @@ module Trainer
238
238
 
239
239
  # Used by store number of passes and failures by identifier
240
240
  # This is used when Xcode 13 (and up) retries tests
241
- # The identifier is duplicated until test succeeds or max count is reachd
241
+ # The identifier is duplicated until test succeeds or max count is reached
242
242
  tests_by_identifier = {}
243
243
 
244
244
  test_rows = all_tests.map do |test|
metadata CHANGED
@@ -1,39 +1,39 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.217.0
4
+ version: 2.218.0
5
5
  platform: ruby
6
6
  authors:
7
- - Fumiya Nakamura
7
+ - Manish Rathi
8
+ - Matthew Ellis
9
+ - Jorge Revuelta H
8
10
  - Felix Krause
11
+ - Luka Mirosevic
12
+ - Fumiya Nakamura
9
13
  - Stefan Natchev
10
- - Roger Oba
11
- - Satoshi Namai
12
- - Josh Holtz
13
- - Danielle Tomlinson
14
- - Manu Wallner
15
- - Andrew McBurney
16
- - Kohki Miki
17
- - Olivier Halligon
18
- - Aaron Brager
14
+ - Helmut Januschka
15
+ - Jimmy Dee
19
16
  - Jan Piotrowski
20
17
  - Maksym Grebenets
21
- - Daniel Jankowski
22
- - Luka Mirosevic
23
- - Jimmy Dee
24
- - Jorge Revuelta H
25
- - Manish Rathi
26
- - Matthew Ellis
27
- - Helmut Januschka
28
- - Max Ott
29
18
  - Jérôme Lacoste
30
19
  - Joshua Liebowitz
20
+ - Josh Holtz
21
+ - Danielle Tomlinson
31
22
  - Łukasz Grabowski
23
+ - Satoshi Namai
24
+ - Aaron Brager
25
+ - Daniel Jankowski
26
+ - Kohki Miki
27
+ - Olivier Halligon
28
+ - Roger Oba
29
+ - Max Ott
32
30
  - Iulian Onofrei
31
+ - Andrew McBurney
32
+ - Manu Wallner
33
33
  autorequire:
34
34
  bindir: bin
35
35
  cert_chain: []
36
- date: 2023-11-15 00:00:00.000000000 Z
36
+ date: 2024-01-02 00:00:00.000000000 Z
37
37
  dependencies:
38
38
  - !ruby/object:Gem::Dependency
39
39
  name: addressable
@@ -475,14 +475,14 @@ dependencies:
475
475
  name: optparse
476
476
  requirement: !ruby/object:Gem::Requirement
477
477
  requirements:
478
- - - "~>"
478
+ - - ">="
479
479
  - !ruby/object:Gem::Version
480
480
  version: 0.1.1
481
481
  type: :runtime
482
482
  prerelease: false
483
483
  version_requirements: !ruby/object:Gem::Requirement
484
484
  requirements:
485
- - - "~>"
485
+ - - ">="
486
486
  - !ruby/object:Gem::Version
487
487
  version: 0.1.1
488
488
  - !ruby/object:Gem::Dependency
@@ -689,272 +689,6 @@ dependencies:
689
689
  - - "~>"
690
690
  - !ruby/object:Gem::Version
691
691
  version: 0.3.0
692
- - !ruby/object:Gem::Dependency
693
- name: climate_control
694
- requirement: !ruby/object:Gem::Requirement
695
- requirements:
696
- - - "~>"
697
- - !ruby/object:Gem::Version
698
- version: 0.2.0
699
- type: :development
700
- prerelease: false
701
- version_requirements: !ruby/object:Gem::Requirement
702
- requirements:
703
- - - "~>"
704
- - !ruby/object:Gem::Version
705
- version: 0.2.0
706
- - !ruby/object:Gem::Dependency
707
- name: coveralls
708
- requirement: !ruby/object:Gem::Requirement
709
- requirements:
710
- - - "~>"
711
- - !ruby/object:Gem::Version
712
- version: 0.8.13
713
- type: :development
714
- prerelease: false
715
- version_requirements: !ruby/object:Gem::Requirement
716
- requirements:
717
- - - "~>"
718
- - !ruby/object:Gem::Version
719
- version: 0.8.13
720
- - !ruby/object:Gem::Dependency
721
- name: fakefs
722
- requirement: !ruby/object:Gem::Requirement
723
- requirements:
724
- - - '='
725
- - !ruby/object:Gem::Version
726
- version: '1.8'
727
- type: :development
728
- prerelease: false
729
- version_requirements: !ruby/object:Gem::Requirement
730
- requirements:
731
- - - '='
732
- - !ruby/object:Gem::Version
733
- version: '1.8'
734
- - !ruby/object:Gem::Dependency
735
- name: pry-byebug
736
- requirement: !ruby/object:Gem::Requirement
737
- requirements:
738
- - - ">="
739
- - !ruby/object:Gem::Version
740
- version: '0'
741
- type: :development
742
- prerelease: false
743
- version_requirements: !ruby/object:Gem::Requirement
744
- requirements:
745
- - - ">="
746
- - !ruby/object:Gem::Version
747
- version: '0'
748
- - !ruby/object:Gem::Dependency
749
- name: pry-rescue
750
- requirement: !ruby/object:Gem::Requirement
751
- requirements:
752
- - - ">="
753
- - !ruby/object:Gem::Version
754
- version: '0'
755
- type: :development
756
- prerelease: false
757
- version_requirements: !ruby/object:Gem::Requirement
758
- requirements:
759
- - - ">="
760
- - !ruby/object:Gem::Version
761
- version: '0'
762
- - !ruby/object:Gem::Dependency
763
- name: pry-stack_explorer
764
- requirement: !ruby/object:Gem::Requirement
765
- requirements:
766
- - - ">="
767
- - !ruby/object:Gem::Version
768
- version: '0'
769
- type: :development
770
- prerelease: false
771
- version_requirements: !ruby/object:Gem::Requirement
772
- requirements:
773
- - - ">="
774
- - !ruby/object:Gem::Version
775
- version: '0'
776
- - !ruby/object:Gem::Dependency
777
- name: pry
778
- requirement: !ruby/object:Gem::Requirement
779
- requirements:
780
- - - ">="
781
- - !ruby/object:Gem::Version
782
- version: '0'
783
- type: :development
784
- prerelease: false
785
- version_requirements: !ruby/object:Gem::Requirement
786
- requirements:
787
- - - ">="
788
- - !ruby/object:Gem::Version
789
- version: '0'
790
- - !ruby/object:Gem::Dependency
791
- name: rake
792
- requirement: !ruby/object:Gem::Requirement
793
- requirements:
794
- - - ">="
795
- - !ruby/object:Gem::Version
796
- version: '0'
797
- type: :development
798
- prerelease: false
799
- version_requirements: !ruby/object:Gem::Requirement
800
- requirements:
801
- - - ">="
802
- - !ruby/object:Gem::Version
803
- version: '0'
804
- - !ruby/object:Gem::Dependency
805
- name: rb-readline
806
- requirement: !ruby/object:Gem::Requirement
807
- requirements:
808
- - - ">="
809
- - !ruby/object:Gem::Version
810
- version: '0'
811
- type: :development
812
- prerelease: false
813
- version_requirements: !ruby/object:Gem::Requirement
814
- requirements:
815
- - - ">="
816
- - !ruby/object:Gem::Version
817
- version: '0'
818
- - !ruby/object:Gem::Dependency
819
- name: rest-client
820
- requirement: !ruby/object:Gem::Requirement
821
- requirements:
822
- - - ">="
823
- - !ruby/object:Gem::Version
824
- version: 1.8.0
825
- type: :development
826
- prerelease: false
827
- version_requirements: !ruby/object:Gem::Requirement
828
- requirements:
829
- - - ">="
830
- - !ruby/object:Gem::Version
831
- version: 1.8.0
832
- - !ruby/object:Gem::Dependency
833
- name: rspec_junit_formatter
834
- requirement: !ruby/object:Gem::Requirement
835
- requirements:
836
- - - "~>"
837
- - !ruby/object:Gem::Version
838
- version: 0.4.1
839
- type: :development
840
- prerelease: false
841
- version_requirements: !ruby/object:Gem::Requirement
842
- requirements:
843
- - - "~>"
844
- - !ruby/object:Gem::Version
845
- version: 0.4.1
846
- - !ruby/object:Gem::Dependency
847
- name: rspec
848
- requirement: !ruby/object:Gem::Requirement
849
- requirements:
850
- - - "~>"
851
- - !ruby/object:Gem::Version
852
- version: '3.10'
853
- type: :development
854
- prerelease: false
855
- version_requirements: !ruby/object:Gem::Requirement
856
- requirements:
857
- - - "~>"
858
- - !ruby/object:Gem::Version
859
- version: '3.10'
860
- - !ruby/object:Gem::Dependency
861
- name: rubocop-performance
862
- requirement: !ruby/object:Gem::Requirement
863
- requirements:
864
- - - ">="
865
- - !ruby/object:Gem::Version
866
- version: '0'
867
- type: :development
868
- prerelease: false
869
- version_requirements: !ruby/object:Gem::Requirement
870
- requirements:
871
- - - ">="
872
- - !ruby/object:Gem::Version
873
- version: '0'
874
- - !ruby/object:Gem::Dependency
875
- name: rubocop-require_tools
876
- requirement: !ruby/object:Gem::Requirement
877
- requirements:
878
- - - ">="
879
- - !ruby/object:Gem::Version
880
- version: '0'
881
- type: :development
882
- prerelease: false
883
- version_requirements: !ruby/object:Gem::Requirement
884
- requirements:
885
- - - ">="
886
- - !ruby/object:Gem::Version
887
- version: '0'
888
- - !ruby/object:Gem::Dependency
889
- name: rubocop
890
- requirement: !ruby/object:Gem::Requirement
891
- requirements:
892
- - - '='
893
- - !ruby/object:Gem::Version
894
- version: 1.50.2
895
- type: :development
896
- prerelease: false
897
- version_requirements: !ruby/object:Gem::Requirement
898
- requirements:
899
- - - '='
900
- - !ruby/object:Gem::Version
901
- version: 1.50.2
902
- - !ruby/object:Gem::Dependency
903
- name: sinatra
904
- requirement: !ruby/object:Gem::Requirement
905
- requirements:
906
- - - "~>"
907
- - !ruby/object:Gem::Version
908
- version: 2.0.8
909
- type: :development
910
- prerelease: false
911
- version_requirements: !ruby/object:Gem::Requirement
912
- requirements:
913
- - - "~>"
914
- - !ruby/object:Gem::Version
915
- version: 2.0.8
916
- - !ruby/object:Gem::Dependency
917
- name: webmock
918
- requirement: !ruby/object:Gem::Requirement
919
- requirements:
920
- - - "~>"
921
- - !ruby/object:Gem::Version
922
- version: '3.8'
923
- type: :development
924
- prerelease: false
925
- version_requirements: !ruby/object:Gem::Requirement
926
- requirements:
927
- - - "~>"
928
- - !ruby/object:Gem::Version
929
- version: '3.8'
930
- - !ruby/object:Gem::Dependency
931
- name: xcov
932
- requirement: !ruby/object:Gem::Requirement
933
- requirements:
934
- - - "~>"
935
- - !ruby/object:Gem::Version
936
- version: 1.4.1
937
- type: :development
938
- prerelease: false
939
- version_requirements: !ruby/object:Gem::Requirement
940
- requirements:
941
- - - "~>"
942
- - !ruby/object:Gem::Version
943
- version: 1.4.1
944
- - !ruby/object:Gem::Dependency
945
- name: yard
946
- requirement: !ruby/object:Gem::Requirement
947
- requirements:
948
- - - "~>"
949
- - !ruby/object:Gem::Version
950
- version: 0.9.11
951
- type: :development
952
- prerelease: false
953
- version_requirements: !ruby/object:Gem::Requirement
954
- requirements:
955
- - - "~>"
956
- - !ruby/object:Gem::Version
957
- version: 0.9.11
958
692
  description: The easiest way to automate beta deployments and releases for your iOS
959
693
  and Android apps
960
694
  email:
@@ -1333,7 +1067,7 @@ files:
1333
1067
  - fastlane/lib/fastlane/plugins/template/.rspec
1334
1068
  - fastlane/lib/fastlane/plugins/template/.rubocop.yml
1335
1069
  - fastlane/lib/fastlane/plugins/template/.travis.yml
1336
- - fastlane/lib/fastlane/plugins/template/Gemfile
1070
+ - fastlane/lib/fastlane/plugins/template/Gemfile.erb
1337
1071
  - fastlane/lib/fastlane/plugins/template/LICENSE.erb
1338
1072
  - fastlane/lib/fastlane/plugins/template/README.md.erb
1339
1073
  - fastlane/lib/fastlane/plugins/template/Rakefile
@@ -1524,6 +1258,9 @@ files:
1524
1258
  - match/lib/match/module.rb
1525
1259
  - match/lib/match/nuke.rb
1526
1260
  - match/lib/match/options.rb
1261
+ - match/lib/match/portal_cache.rb
1262
+ - match/lib/match/portal_fetcher.rb
1263
+ - match/lib/match/profile_includes.rb
1527
1264
  - match/lib/match/runner.rb
1528
1265
  - match/lib/match/setup.rb
1529
1266
  - match/lib/match/spaceship_ensure.rb
@@ -1,6 +0,0 @@
1
- source('https://rubygems.org')
2
-
3
- gemspec
4
-
5
- plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
6
- eval_gemfile(plugins_path) if File.exist?(plugins_path)