cocoapods-rn-toolkit 0.0.7 → 0.0.9
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2ca85c40bb8b152ffac086032b5d9b4438a790b5a71d7755e74ee1406db1027
|
4
|
+
data.tar.gz: 7cdaea44f959dddfdef627cc063b5ea660898c23547b2a6eb1f1cda6280a3c69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bfde6c973a692a2000a5173a6d9cde7f28273ab06892a58833cf4e8c5912320a35a1d3dd4d05441ee6501a4170df9f1e105a2249fd618a63634370098887248
|
7
|
+
data.tar.gz: ace773463c5ef16e5758f29aaced6b440cb9bce82f83d4ba0363cc486538189a61dd50d42cb8717bde52f5b8e8eacd0c0e02c7d7aa96f84c9ab2024a2c98db99
|
@@ -1,15 +1,15 @@
|
|
1
1
|
module CocoapodsRnToolkit
|
2
2
|
module IOS17UIGraphics
|
3
3
|
def self.apply(installer)
|
4
|
-
installer.
|
5
|
-
update_prefix_header(
|
4
|
+
installer.pods_project.targets.each do |target|
|
5
|
+
update_prefix_header(target)
|
6
6
|
end
|
7
7
|
end
|
8
8
|
|
9
9
|
private
|
10
10
|
|
11
|
-
def self.update_prefix_header(
|
12
|
-
prefix_path =
|
11
|
+
def self.update_prefix_header(target)
|
12
|
+
prefix_path = target.prefix_header_path
|
13
13
|
return unless File.exist?(prefix_path)
|
14
14
|
|
15
15
|
content = File.read(prefix_path)
|