cocoapods-core 1.14.3 → 1.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09641c8b3fab242dbfd6106795572afad7d1e6cddfb44ec567b8a62921d284a3'
4
- data.tar.gz: 663e4231d347fbbe8f4061f50a0406cc7eef8661c5da35d2d9ce059b5cfb6f7f
3
+ metadata.gz: b41aa3d6eda2f5a621fe1c92ab00de30bb9224df7b3fb61a54dcebbf2dcacf07
4
+ data.tar.gz: 9d974ef615d52d6c6a73c611a97ec217176ff29aebcab5f91e4e4dcb6a642d3d
5
5
  SHA512:
6
- metadata.gz: 4ba301decaf9b01fa1f49a688b129aaa066a478b92ae2df1f59d85c11ba668192ff45ac44fd70a3f8a4ab7c2b5009092455ab9cdb0f44b6c026f7f03a67c2efe
7
- data.tar.gz: 05eb169d339bd041b1b1354a690ee5fc9f62da971a6617ae59323ca3ee4513a2d2880d9974358e97a6bf8786ae7f5837738b55912cadbce1d9c674d760300a5f
6
+ metadata.gz: 0d277f4163a01d298eddd6f18d97726e41c38a98902567c1b741e64c8cea1ad9df0d9bcc6f0ec0ca3c7bf08a83d0a4f3785727bab4f1cba30378ca46f7381f2c
7
+ data.tar.gz: df2e1eadab0bf45ef9018713c0d04f54cc8504e477022f2a5233f9c4b5e0bcbe99b3e6baa90cc1b34cd61b12e0b2b22d043d11771a4e59f15acd2a15ab1cca5a
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the cocoapods-core.
3
3
  #
4
- CORE_VERSION = '1.14.3'.freeze unless defined? Pod::CORE_VERSION
4
+ CORE_VERSION = '1.15.1'.freeze unless defined? Pod::CORE_VERSION
5
5
  end
@@ -485,7 +485,8 @@ module Pod
485
485
  # { "https://github.com/cocoapods/cocoapods.git" => ["Alamofire", "Moya"] }
486
486
  #
487
487
  def generate_spec_repos(spec_repos)
488
- Hash[spec_repos.map do |source, specs|
488
+ output = Hash.new {|h, k| h[k] = Array.new(0)}
489
+ spec_repos.each do |source, specs|
489
490
  next unless source
490
491
  next if specs.empty?
491
492
  key = source.url || source.name
@@ -493,9 +494,18 @@ module Pod
493
494
  # save `trunk` as 'trunk' so that the URL itself can be changed without lockfile churn
494
495
  key = Pod::TrunkSource::TRUNK_REPO_NAME if source.name == Pod::TrunkSource::TRUNK_REPO_NAME
495
496
 
496
- value = specs.map { |s| s.root.name }.uniq
497
- [key, YAMLHelper.sorted_array(value)]
498
- end.compact]
497
+ value = specs.map { |s| s.root.name }
498
+
499
+ if output.has_key?(key)
500
+ value = value + output[key]
501
+ end
502
+
503
+ if value.length > 0
504
+ output[key] = YAMLHelper.sorted_array(value.uniq)
505
+ end
506
+ end
507
+
508
+ output.compact
499
509
  end
500
510
 
501
511
  # Generates the information of the external sources.
@@ -45,11 +45,19 @@ module Pod
45
45
  @symbolic_name = input.name
46
46
  @deployment_target = input.deployment_target
47
47
  else
48
- # Allow `Platform.new('macos')` to be equivalent to `Platform.macos`
49
- if input == 'macos'
50
- input = 'osx'
51
- end
52
- @symbolic_name = input.to_sym
48
+ input = input.to_s.downcase
49
+
50
+ name = case input
51
+ when 'macos'
52
+ # Allow `Platform.new('macos')` to be equivalent to `Platform.macos`
53
+ 'osx'
54
+ when 'xros'
55
+ # Compatibility with older references to 'xrOS'
56
+ 'visionos'
57
+ else
58
+ input
59
+ end
60
+ @symbolic_name = name.to_sym
53
61
  target = target[:deployment_target] if target.is_a?(Hash)
54
62
  @deployment_target = Version.create(target)
55
63
  end
@@ -331,6 +331,13 @@ module Pod
331
331
  def subspec_by_name(relative_name, raise_if_missing = true, include_non_library_specifications = false)
332
332
  if relative_name.nil? || relative_name == base_name
333
333
  self
334
+ elsif base_name.nil?
335
+ if raise_if_missing
336
+ raise Informative, "Trying to access a `#{relative_name}` " \
337
+ "specification from `#{defined_in_file}`, which has no contents."
338
+ else
339
+ return nil
340
+ end
334
341
  elsif relative_name.downcase == base_name.downcase
335
342
  raise Informative, "Trying to access a `#{relative_name}` " \
336
343
  "specification from `#{base_name}`, which has a different case."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.3
4
+ version: 1.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-11-19 00:00:00.000000000 Z
12
+ date: 2024-02-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -231,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
231
231
  - !ruby/object:Gem::Version
232
232
  version: '0'
233
233
  requirements: []
234
- rubygems_version: 3.1.6
234
+ rubygems_version: 3.2.3
235
235
  signing_key:
236
236
  specification_version: 4
237
237
  summary: The models of CocoaPods