cocoapods 1.8.3 → 1.8.4

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: 27ee6514e8265ff181f12a006d53da682b0c01fe6ce746f3f65a6eac44ca45d8
4
- data.tar.gz: e13a56c17de46f9934173d5599ffee24340f4656e9de4a33a588f32426ad2729
3
+ metadata.gz: 57b1de10bba3e948a5169dfaeb1efd904e75dee4cde6bd7218440977930865ff
4
+ data.tar.gz: 281189ca4c47e468265a5d541c62046404a3b437b8a097be68dd3c831c4c6018
5
5
  SHA512:
6
- metadata.gz: f26b1bc7a027a77c0cb35197b01c19fb51b2c5268b357b76158270ca71ac3542803e5d09e495f08151f678a9686f1f81c2f55a15d0b07073caba1e2b92f27e35
7
- data.tar.gz: 3014df96b341339808887a376cd0d1518176c8cdd5b0695b8b90da0bf98bed14e05ba387cb48a7de365ca7f4de2fcca4f6cff71cc4f1289c26381802ec19707d
6
+ metadata.gz: 1dcb8e86b473bbfd6e4f7675fde3aad7c6c47f0f7812ced0d20ff337951c90588a44034ff0773236a4a6593e75a090a24ad44fd7a326a95174dbe2839ed01e7f
7
+ data.tar.gz: c952e35ebae9304ecef0cbe70ab64f4fd53981220cbab84fd1bd32c9bb976bbabe28ab6c3bca47f1ca52bec5f4d23eeb6fc341cdeca0d2207436c5fbc2bac6b3
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the CocoaPods command line tool.
3
3
  #
4
- VERSION = '1.8.3'.freeze unless defined? Pod::VERSION
4
+ VERSION = '1.8.4'.freeze unless defined? Pod::VERSION
5
5
  end
@@ -113,9 +113,13 @@ module Pod
113
113
  end
114
114
 
115
115
  changed_spec_paths = {}
116
- # Ceate the Spec_Lock file if needed and lock it so that concurrent
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("#{Config.instance.repos_dir}/Spec_Lock", File::CREAT) do |f|
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.3
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-04 00:00:00.000000000 Z
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.3
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.3
29
+ version: 1.8.4
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: claide
32
32
  requirement: !ruby/object:Gem::Requirement