cocoapods-core 1.15.0 → 1.15.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cocoapods-core/gem_version.rb +1 -1
- data/lib/cocoapods-core/platform.rb +13 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b41aa3d6eda2f5a621fe1c92ab00de30bb9224df7b3fb61a54dcebbf2dcacf07
|
4
|
+
data.tar.gz: 9d974ef615d52d6c6a73c611a97ec217176ff29aebcab5f91e4e4dcb6a642d3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d277f4163a01d298eddd6f18d97726e41c38a98902567c1b741e64c8cea1ad9df0d9bcc6f0ec0ca3c7bf08a83d0a4f3785727bab4f1cba30378ca46f7381f2c
|
7
|
+
data.tar.gz: df2e1eadab0bf45ef9018713c0d04f54cc8504e477022f2a5233f9c4b5e0bcbe99b3e6baa90cc1b34cd61b12e0b2b22d043d11771a4e59f15acd2a15ab1cca5a
|
@@ -45,17 +45,19 @@ module Pod
|
|
45
45
|
@symbolic_name = input.name
|
46
46
|
@deployment_target = input.deployment_target
|
47
47
|
else
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
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
|
59
61
|
target = target[:deployment_target] if target.is_a?(Hash)
|
60
62
|
@deployment_target = Version.create(target)
|
61
63
|
end
|
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.15.
|
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: 2024-
|
12
|
+
date: 2024-02-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|