cocoapods 1.8.3 → 1.8.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 +12 -0
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/sources_manager.rb +6 -2
- 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: 57b1de10bba3e948a5169dfaeb1efd904e75dee4cde6bd7218440977930865ff
|
|
4
|
+
data.tar.gz: 281189ca4c47e468265a5d541c62046404a3b437b8a097be68dd3c831c4c6018
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dcb8e86b473bbfd6e4f7675fde3aad7c6c47f0f7812ced0d20ff337951c90588a44034ff0773236a4a6593e75a090a24ad44fd7a326a95174dbe2839ed01e7f
|
|
7
|
+
data.tar.gz: c952e35ebae9304ecef0cbe70ab64f4fd53981220cbab84fd1bd32c9bb976bbabe28ab6c3bca47f1ca52bec5f4d23eeb6fc341cdeca0d2207436c5fbc2bac6b3
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.8.4 (2019-10-16)
|
|
8
|
+
|
|
9
|
+
##### Enhancements
|
|
10
|
+
|
|
11
|
+
* None.
|
|
12
|
+
|
|
13
|
+
##### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* Do not crash if the repos dir is not setup.
|
|
16
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
17
|
+
[#9216](https://github.com/CocoaPods/CocoaPods/issues/9216)
|
|
18
|
+
|
|
7
19
|
## 1.8.3 (2019-10-04)
|
|
8
20
|
|
|
9
21
|
##### Enhancements
|
|
@@ -113,9 +113,13 @@ module Pod
|
|
|
113
113
|
end
|
|
114
114
|
|
|
115
115
|
changed_spec_paths = {}
|
|
116
|
-
|
|
116
|
+
|
|
117
|
+
# Do not perform an update if the repos dir has not been setup yet.
|
|
118
|
+
return unless repos_dir.exist?
|
|
119
|
+
|
|
120
|
+
# Create the Spec_Lock file if needed and lock it so that concurrent
|
|
117
121
|
# repo updates do not cause each other to fail
|
|
118
|
-
File.open("#{
|
|
122
|
+
File.open("#{repos_dir}/Spec_Lock", File::CREAT) do |f|
|
|
119
123
|
f.flock(File::LOCK_EX)
|
|
120
124
|
sources.each do |source|
|
|
121
125
|
UI.section "Updating spec repo `#{source.name}`" do
|
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.8.
|
|
4
|
+
version: 1.8.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-10-
|
|
14
|
+
date: 2019-10-16 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.8.
|
|
22
|
+
version: 1.8.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.8.
|
|
29
|
+
version: 1.8.4
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: claide
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|