-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXTlib.podspec
47 lines (37 loc) · 1.63 KB
/
XTlib.podspec
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
37
38
39
40
41
42
43
44
45
46
47
Pod::Spec.new do |s|
s.name = "XTlib"
s.version = "2.0.7"
s.summary = "a rapid develop lib for iOS"
s.description = "XTlib. a rapid develop lib for iOS ."
s.homepage = "https://github.com/Akateason/XTlib"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "teason" => "[email protected]" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/Akateason/XTlib.git", :tag => s.version }
s.default_subspec = 'base'
s.subspec 'base' do |base|
base.source_files = "XTlib/XTlib"
base.public_header_files = "XTlib/XTlib/*.h"
base.dependency "XTBase"
base.dependency "XTFMDB",">2.0.0"
base.dependency "XTReq",">1.3.0"
base.dependency "XTColor"
base.dependency "XTTable"
base.dependency "XTRouter"
base.dependency "XTIAP"
base.dependency "FDFullscreenPopGesture"
end
s.subspec 'Animations' do |a|
a.source_files = "XTlib/XTlib/Components/Animations"
a.public_header_files="XTlib/XTlib/Components/Animations/*.h"
a.dependency "XTlib/base"
end
s.subspec 'CustomUIs' do |c|
c.source_files = "XTlib/XTlib/Components/CustomUIs","XTlib/XTlib/Components/CustomUIs/**/*.{h,m}"
c.public_header_files="XTlib/XTlib/Components/CustomUIs/*.h","XTlib/XTlib/Components/CustomUIs/**/*.h"
c.resources = "XTlib/XTlib/Components/CustomUIs/**/*.png","XTlib/XTlib/Components/CustomUIs/**/**/*.png","XTlib/XTlib/Components/CustomUIs/**/*.xib"
c.dependency "XTlib/base"
c.dependency "RSKImageCropper"
c.dependency "CHTCollectionViewWaterfallLayout"
end
end