cocoapods 1.7.3 → 1.7.4
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/target/pod_target.rb +3 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fcfe731d99b8bbf15f09363c0cce4101c127848967aad81b4480299de0b118c5
|
4
|
+
data.tar.gz: ebda386316c931b97eea779e42651c4b0f3cf7cc0e38fcef980dab8b7a2f6538
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10ec44eb885483861f7285dce38118d2970854166f98f2042d15409393c7f504c802248c0c799c5738ad6e9333ec58f32de13e96fdfe5691586b30122eb57b16
|
7
|
+
data.tar.gz: 6c5d14ff0c0e25848d85cfe87dad944185a50a23a01c8c1e525d3092bff236f4f4bb856c4ddde7c50e07236a1696753f8a32b46beedcc5207dd996c594f0390c
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,19 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
4
4
|
|
5
5
|
To install release candidates run `[sudo] gem install cocoapods --pre`
|
6
6
|
|
7
|
+
## 1.7.4 (2019-07-09)
|
8
|
+
|
9
|
+
##### Enhancements
|
10
|
+
|
11
|
+
* None.
|
12
|
+
|
13
|
+
##### Bug Fixes
|
14
|
+
|
15
|
+
* Handle scheme configuration for specs with unsupported platforms.
|
16
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
17
|
+
[#8850](https://github.com/CocoaPods/CocoaPods/issues/8850)
|
18
|
+
|
19
|
+
|
7
20
|
## 1.7.3 (2019-06-28)
|
8
21
|
|
9
22
|
##### Enhancements
|
@@ -490,7 +490,9 @@ module Pod
|
|
490
490
|
# @return [Hash] The scheme configuration used or empty if none is specified.
|
491
491
|
#
|
492
492
|
def scheme_for_spec(spec)
|
493
|
-
return {} if spec.library_specification? && !spec.root?
|
493
|
+
return {} if (spec.library_specification? && !spec.root?) || spec.available_platforms.none? do |p|
|
494
|
+
p.name == platform.name
|
495
|
+
end
|
494
496
|
spec.consumer(platform).scheme
|
495
497
|
end
|
496
498
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2019-
|
14
|
+
date: 2019-07-09 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: cocoapods-core
|
@@ -19,14 +19,14 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - '='
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.7.
|
22
|
+
version: 1.7.4
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - '='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.7.
|
29
|
+
version: 1.7.4
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: claide
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|