cocoapods-lzclear 0.0.6 → 0.0.8
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/lib/cocoapods-lzclear/command/lzclear.rb +16 -10
- data/lib/cocoapods-lzclear/gem_version.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: 63fcdfd31153b90302c4bf1a38f420bb480f7a3bc2ab940801ba6ec18c6e49d7
|
4
|
+
data.tar.gz: fb807c657dde51d52ed3ccabeebd42b471f48824b46241dea61050eb683ffc40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 493e793cbe666ad4bab8b308104d28b34664059818903ad13a756a4969708e8a120b922419a61cae87dbb79fb19af0e7ae245e39398e6e0cbda9614634583ef8
|
7
|
+
data.tar.gz: 3b09a275e451df7c7d53d354ecfaaaa56afe57d74efe389ffee5d41a45e756e265559b6ef3a60e981b2c32b2a7edc4c3290ed35389661be87a3741141c22e5bb
|
@@ -42,8 +42,6 @@ class Tools
|
|
42
42
|
|
43
43
|
def get_target(path)
|
44
44
|
|
45
|
-
targets = Array.new
|
46
|
-
|
47
45
|
project = Xcodeproj::Project.open(path)
|
48
46
|
|
49
47
|
target = project.targets[0]
|
@@ -56,16 +54,24 @@ class Tools
|
|
56
54
|
|
57
55
|
if phase.name == '[CP] Copy Pods Resources'
|
58
56
|
|
59
|
-
|
60
|
-
if
|
61
|
-
|
62
|
-
|
57
|
+
input_files = phase.input_paths
|
58
|
+
if input_files != nil
|
59
|
+
input_files.clear
|
60
|
+
end
|
61
|
+
|
62
|
+
input_paths = phase.input_file_list_paths
|
63
|
+
if input_paths != nil
|
64
|
+
input_paths.clear
|
65
|
+
end
|
66
|
+
|
67
|
+
output_files = phase.output_paths
|
68
|
+
if output_files != nil
|
69
|
+
output_files.clear
|
63
70
|
end
|
64
71
|
|
65
|
-
|
66
|
-
if
|
67
|
-
|
68
|
-
Pod::UI.puts 'Clean Output File Lists!'
|
72
|
+
output_paths = phase.output_file_list_paths
|
73
|
+
if output_paths != nil
|
74
|
+
output_paths.clear
|
69
75
|
end
|
70
76
|
end
|
71
77
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-lzclear
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ningyuan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
|
-
rubygems_version: 3.0.3
|
79
|
+
rubygems_version: 3.0.3.1
|
80
80
|
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: cocoapods-lzclear
|