-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathSafeKit.podspec
More file actions
executable file
·30 lines (26 loc) · 858 Bytes
/
SafeKit.podspec
File metadata and controls
executable file
·30 lines (26 loc) · 858 Bytes
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
Pod::Spec.new do |s|
s.name = "SafeKit"
s.version = "1.4.1"
s.summary = "iOS safe kit.Never crash"
s.homepage = "https://github.com/JJMM/SafeKit"
s.license = "Apache License, Version 2.0"
s.authors = { "JJMM" => "iosdes@163.com" }
s.source = { :git => "https://github.com/JJMM/SafeKit.git", :tag => "#{s.version}" }
s.frameworks = 'Foundation'
s.platform = :ios
s.source_files = 'SafeKit/*'
s.requires_arc = true
s.subspec 'Foundation' do |ss|
ss.dependency 'SafeKit/SafeCore'
ss.source_files = 'SafeKit/Foundation/*'
end
s.subspec 'SafeCore' do |ss|
ss.source_files = 'SafeKit/SafeCore/*'
end
s.subspec 'MRC' do |ss|
ss.requires_arc = false
ss.compiler_flags = '-ObjC'
ss.dependency 'SafeKit/SafeCore'
ss.source_files = 'SafeKit/MRC/*'
end
end