podfileDep 1.1.2 → 1.1.4
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/CHANGELOG.md +9 -1
- data/lib/podfileDep/version.rb +1 -1
- data/lib/podfileDep.rb +12 -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: f24323c1a1518c6ad19c0728d2c2d0dcd7bfcfe1fbbfebda26f732b1e42d2705
|
4
|
+
data.tar.gz: 77a8681970626fef5fac4695883eb05ad1c909ab119bb3d8fb72667a431adaf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a57f95164c72dce0137114a4e41745b796588990f0b4e41f08ae376862490dbda23d83b53281712d9081ee9066846a3129a1b6a93c8b9766ce037aac181ecf5
|
7
|
+
data.tar.gz: 36932bc857bed09de1980b33f3deacfb9a66632c4c78bbd436d99f1da2579b823bfa2abbe6fc70e15dc7a349f6c54a29ce7ceac0bf6439ad29384b1fa9fd7db5
|
data/CHANGELOG.md
CHANGED
@@ -14,4 +14,12 @@
|
|
14
14
|
|
15
15
|
## [1.1.2] - 2023-03-02
|
16
16
|
|
17
|
-
- 对FBRetainCycleDetector库中fishhook崩溃问题的处理
|
17
|
+
- 对FBRetainCycleDetector库中fishhook崩溃问题的处理
|
18
|
+
|
19
|
+
## [1.1.3] - 2023-03-08
|
20
|
+
|
21
|
+
- 对FBRetainCycleDetector库中引用关系分析崩溃问题的处理
|
22
|
+
|
23
|
+
## [1.1.4] - 2023-03-08
|
24
|
+
|
25
|
+
- 对FBRetainCycleDetector库中引用关系分析崩溃问题的处理(1)
|
data/lib/podfileDep/version.rb
CHANGED
data/lib/podfileDep.rb
CHANGED
@@ -805,6 +805,18 @@ module SpecialDeal
|
|
805
805
|
def SpecialDeal.FBRetainCycleDetector()
|
806
806
|
PathUtil.replaceStr("Pods/FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/FBClassStrongLayout.mm", "layoutCache[currentClass] = ivars;", "layoutCache[(id<NSCopying>)currentClass] = ivars;")
|
807
807
|
PathUtil.replaceStr("Pods/FBRetainCycleDetector/fishhook/fishhook.c", "indirect_symbol_bindings[i] = cur->rebindings[j].replacement;", "if(i < (sizeof(indirect_symbol_bindings) /sizeof(indirect_symbol_bindings[0]))) {indirect_symbol_bindings[i]=cur->rebindings[j].replacement;}")
|
808
|
+
|
809
|
+
newStr = "#import <objc/runtime.h>
|
810
|
+
#import <malloc/malloc.h>"
|
811
|
+
PathUtil.replaceStr("Pods/FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCGraphElement.mm", "#import <objc/runtime.h>", newStr)
|
812
|
+
|
813
|
+
newStr = "malloc_zone_t *zone = malloc_zone_from_ptr((__bridge void *)object); if (zone) { Class aCls=object_getClass(object);"
|
814
|
+
PathUtil.replaceStr("Pods/FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCGraphElement.mm", "Class aCls = object_getClass(object);", newStr)
|
815
|
+
|
816
|
+
newStr = "}
|
817
|
+
# endif"
|
818
|
+
PathUtil.replaceStr("Pods/FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCGraphElement.mm", "#endif", newStr)
|
819
|
+
|
808
820
|
end
|
809
821
|
end
|
810
822
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: podfileDep
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- WANGSHUAIPENG
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: iOS 端Podfile文件托管
|
14
14
|
email:
|