cocoapods-fix-cache 0.2.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cocoapods-fix-cache.gemspec +1 -1
- data/lib/cocoapods-fix-cache/fix-cache.rb +1 -1
- data/lib/cocoapods-fix-cache.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1f8cb3ec9f894bdf249fa456d00ba92390ea478d214eeb623a7c4b9a9c59bf1
|
4
|
+
data.tar.gz: e0c5520374fee881a624cc7fadb62d0ae60ef6ed999ad102f7b0b9c0e6b83de0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10de96af0e327cb689626cb87872bf399f30803151986cd4647976760170bb2c1beedc6e3113a187a27e230b0ec1c455f6b68d403a49195abf05938b8a2a71e2
|
7
|
+
data.tar.gz: 61ecf96023b6ad1e9f37b24bed285216bb05d2810166d186869b8c5fed9ede5ff68e936379c3d806a3f4ce33999084c21af8e31e7cebfd69e655a5088df7b18e
|
data/cocoapods-fix-cache.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = CocoapodsFixCache::VERSION
|
9
9
|
spec.authors = ['chengcong']
|
10
10
|
spec.email = ['646376172@qq.com']
|
11
|
-
spec.description = %q{
|
11
|
+
spec.description = %q{Fix CocoaPods cache bug}
|
12
12
|
spec.summary = %q{Fix Concurrent building occasionally cleans the Pods cache directory, see https://github.com/CocoaPods/CocoaPods/pull/11827}
|
13
13
|
spec.homepage = 'https://github.com/fabcz/cocoapods-fix-cache'
|
14
14
|
spec.license = 'MIT'
|
@@ -8,7 +8,7 @@ module Pod
|
|
8
8
|
if Cache.respond_to?(:read_lock) && Cache.respond_to?(:write_lock)
|
9
9
|
version_file = root + "VERSION"
|
10
10
|
version = nil
|
11
|
-
Cache.read_lock(version_file) { version = version_file.read.strip if version_file.file?
|
11
|
+
Cache.read_lock(version_file) { version = version_file.read.strip } if version_file.file?
|
12
12
|
|
13
13
|
root.rmtree if version != Pod::VERSION && root.exist?
|
14
14
|
root.mkpath
|
data/lib/cocoapods-fix-cache.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-fix-cache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- chengcong
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
41
|
+
description: Fix CocoaPods cache bug
|
42
42
|
email:
|
43
43
|
- 646376172@qq.com
|
44
44
|
executables: []
|