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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7dc6f3e3b3a814c90124f50277cbbd404bbc6aa8efa974236d983aaa90f3ad94
4
- data.tar.gz: 0f8f800e9401d217aa2fec5d0d088ecba8e86370a641a67bd0d0c9fae8dd63ea
3
+ metadata.gz: f24323c1a1518c6ad19c0728d2c2d0dcd7bfcfe1fbbfebda26f732b1e42d2705
4
+ data.tar.gz: 77a8681970626fef5fac4695883eb05ad1c909ab119bb3d8fb72667a431adaf7
5
5
  SHA512:
6
- metadata.gz: c57a1baca66602dbf3f64d427e8332576ebeca97fed65af51c8fb25842a2b63a466fbfdd90891bb87363d68969c7b793f06fb696df3a3eb4b5738db780e52274
7
- data.tar.gz: bfd0da47da0b8a7f9fe20523ddeb631ec99497508b83200d38651b65e6ca1abc4da1f28c381f44d3a0937306bf33a406e5ca2c15a3388a26b4093228694fff2c
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PodfileDep
4
- VERSION = "1.1.2"
4
+ VERSION = "1.1.4"
5
5
  end
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.2
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-02 00:00:00.000000000 Z
11
+ date: 2023-03-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: iOS 端Podfile文件托管
14
14
  email: