censorius 0.1.6 → 0.1.7
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/censorius/version.rb +1 -1
- data/lib/censorius.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a47cbd15d4e63e04b07457800cf38f13059f896eed12dbb678364a5e40bb4c30
|
|
4
|
+
data.tar.gz: a68cdd14b0d02771bf8f02ffc53554038c07fbc7fc57933ac7cff160c857035e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf8adf0ad09797ebfd8b8b0ead0452f8436341d474d908b8a986dc764882338460d32918bf07a2d12868738b682e24c173ddfcd7da0c695a56dc9785c20b54ad
|
|
7
|
+
data.tar.gz: d280c392ca3ed7e3b58b13443437680e8234115434829d725383e50e45c06f67ad1788c67b59fdac4b3d4bba089be7b7acecab511401fa0ae3217570ec3590ff
|
data/lib/censorius/version.rb
CHANGED
data/lib/censorius.rb
CHANGED
|
@@ -111,6 +111,7 @@ module Censorius
|
|
|
111
111
|
file_ref_path = generate_paths(build_file.file_ref)
|
|
112
112
|
@paths_by_object[build_file] = "#{parent_path}/PBXBuildFile(#{file_ref_path})"
|
|
113
113
|
elsif build_file.product_ref
|
|
114
|
+
@paths_by_object[build_file.product_ref] ||= generate_paths(dependency.product_ref, parent_path)
|
|
114
115
|
product_ref_path = @paths_by_object[build_file.product_ref]
|
|
115
116
|
@paths_by_object[build_file] = "#{parent_path}/PBXBuildFile(#{product_ref_path})"
|
|
116
117
|
else
|
|
@@ -149,6 +150,7 @@ module Censorius
|
|
|
149
150
|
@paths_by_object[dependency] = path = "#{parent_path}/PBXTargetDependency(#{dependency.name})"
|
|
150
151
|
generate_paths(dependency.target_proxy, path)
|
|
151
152
|
elsif dependency.product_ref
|
|
153
|
+
@paths_by_object[dependency.product_ref] ||= generate_paths(dependency.product_ref, parent_path)
|
|
152
154
|
product_ref_path = @paths_by_object[dependency.product_ref]
|
|
153
155
|
@paths_by_object[dependency] = "#{parent_path}/PBXTargetDependency(#{product_ref_path})"
|
|
154
156
|
else
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: censorius
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Igor Makarov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-05-
|
|
11
|
+
date: 2024-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xcodeproj
|