-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRITLKit.podspec
70 lines (52 loc) · 1.84 KB
/
RITLKit.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Pod::Spec.new do |s|
s.name = 'RITLKit'
s.version = '2.0.5'
s.summary = "The commonly Used Objective-C RITLKit."
s.homepage = "https://github.com/RITL/RITLKit"
s.license = 'MIT'
s.authors = { "Yuexiaowen" => "[email protected]" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/RITL/RITLKit.git", :tag => s.version }
s.source_files = "RITLKit/RITLKit.h"
s.frameworks = 'Foundation', 'UIKit', 'WebKit'
s.requires_arc = true
s.dependency 'Masonry'
s.dependency 'RITLViewFrame'
s.subspec 'Category' do |ss|
ss.source_files = 'RITLKit/Category/**/*.{h,m}'
ss.dependency 'RITLKit/Utility'
end
s.subspec 'ScrollPageController' do |ss|
ss.source_files = 'RITLKit/ScrollPageController/**/{RITLScrollPageViewController}.{h,m}'
ss.dependency 'RITLKit/Category'
ss.dependency 'RITLKit/Utility'
ss.subspec 'LLSegmentBar' do |sss|
sss.source_files = 'RITLKit/ScrollPageController/LLSegmentBar/**/*.{h,m}'
end
end
s.subspec 'Utility' do |ss|
ss.source_files = 'RITLKit/Utility/Utility/**/*.{h,m}'
ss.subspec 'Filter' do |sss|
sss.source_files = 'RITLKit/Utility/Filter/**/*.{h,m}'
end
ss.subspec 'DownLoader' do |sss|
sss.source_files = 'RITLKit/Utility/DownLoader/**/*.{h,m}'
end
ss.subspec 'Reachability' do |sss|
sss.source_files = 'RITLKit/Utility/Reachability/**/*.{h,m}'
end
end
s.subspec 'ImagePicker' do |ss|
ss.source_files = 'RITLKit/ImagePicker/**/*.{h,m}'
end
s.subspec 'View' do |ss|
ss.source_files = 'RITLKit/View/**/*.{h,m}'
ss.dependency 'RITLKit/Category'
ss.dependency 'RITLKit/Utility'
end
s.subspec 'Web' do |ss|
ss.source_files = 'RITLKit/Web/**/*.{h,m}'
ss.dependency 'RITLKit/Category'
ss.dependency 'RITLKit/Utility'
end
end