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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8307ded4ecf84422d64f4865c78e7d94de47e4ab6946659a5b07d39ca1aa86d
4
- data.tar.gz: 60562917ec749fd3c4f1f7d63c664205795cca251cc63b87e058da6f997c83cb
3
+ metadata.gz: fcfe731d99b8bbf15f09363c0cce4101c127848967aad81b4480299de0b118c5
4
+ data.tar.gz: ebda386316c931b97eea779e42651c4b0f3cf7cc0e38fcef980dab8b7a2f6538
5
5
  SHA512:
6
- metadata.gz: 8fcce31eece2a18ecf4d1df41e67684156282b357c267780e4b9ee61597b4101434c4e86300e5b66b2b982265321b2473ba26c1d08a264229f622d06b03d50bd
7
- data.tar.gz: 5f1e552172c2f6a353cd367f94c5c6d63229265d4d3e7182e60131372d52ee93dc53b8faaf18fb9d601face83eadf2f113f5cc880d78ccd6dbda9333de7a878e
6
+ metadata.gz: 10ec44eb885483861f7285dce38118d2970854166f98f2042d15409393c7f504c802248c0c799c5738ad6e9333ec58f32de13e96fdfe5691586b30122eb57b16
7
+ data.tar.gz: 6c5d14ff0c0e25848d85cfe87dad944185a50a23a01c8c1e525d3092bff236f4f4bb856c4ddde7c50e07236a1696753f8a32b46beedcc5207dd996c594f0390c
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the CocoaPods command line tool.
3
3
  #
4
- VERSION = '1.7.3'.freeze unless defined? Pod::VERSION
4
+ VERSION = '1.7.4'.freeze unless defined? Pod::VERSION
5
5
  end
@@ -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.3
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-06-28 00:00:00.000000000 Z
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.3
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.3
29
+ version: 1.7.4
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: claide
32
32
  requirement: !ruby/object:Gem::Requirement