-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJCLeaksFinder.podspec
More file actions
36 lines (32 loc) · 1.44 KB
/
JCLeaksFinder.podspec
File metadata and controls
36 lines (32 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# Be sure to run `pod lib lint MLeaksFinder.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "JCLeaksFinder"
s.version = "0.1.1"
s.summary = "Find memory leaks in your iOS app at develop time."
s.description = 'iOS 内存泄漏检测工具,支持检测内存泄漏并输出循环引用链/全局对象引用链。'
s.author = 'jerrychu'
s.platform = :ios
s.homepage = "https://github.com/JerryChu/JCLeaksFinder"
s.license = 'MIT'
s.author = { "" => "" }
s.source = { :git => "https://github.com/JerryChu/JCLeaksFinder", :branch => 'master' }
s.ios.deployment_target = '8.0'
s.static_framework = true
s.subspec 'GlobalRetainDetector' do |ss|
ss.requires_arc = false
ss.source_files = 'GlobalRetainDetector/JCGlobalObjectsFinder.{h,m}'
ss.public_header_files = 'GlobalRetainDetector/JCGlobalObjectsFinder.h'
end
s.subspec 'MLeaksFinder' do |ss|
ss.source_files = 'MLeaksFinder/**/*', 'JCLeaksConfig.{h,m}'
ss.public_header_files = 'JCLeaksConfig.h', 'MLeaksFinder/NSObject+MemoryLeak.h'
ss.dependency 'FBRetainCycleDetector'
ss.dependency 'JCLeaksFinder/GlobalRetainDetector'
end
end