forked from casatwy/RTNetworking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAIFNetworking.podspec
67 lines (60 loc) · 2.29 KB
/
AIFNetworking.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
Pod::Spec.new do |s|
s.name = 'AIFNetworking'
s.version = '1.0'
s.summary = 'Anjuke iOS Framework: Networking'
s.authors = { 'Casa Taloyum' => '[email protected]' }
s.source = { :git => '[email protected]:_iOS/AIFNetworking' }
s.requires_arc = true
s.ios.deployment_target = '6.0'
s.source_files = 'RTNetworking/Components/*.{h,m}'
s.subspec 'Assistants' do |ss|
ss.source_files = 'RTNetworking/Components/Assistants/*.{h,m}'
end
s.subspec 'Categories' do |ss|
ss.source_files = 'RTNetworking/Components/Categories/*.{h,m}'
ss.frameworks = 'Security'
end
s.subspec 'Components' do |ss|
ss.source_files = 'RTNetworking/Components/Components/*.{h,m}'
ss.frameworks = 'SystemConfiguration'
ss.subspec 'LocationComponents' do |sss|
sss.source_files = 'RTNetworking/Components/Components/LocationComponents/**/*.{h,m}'
end
ss.subspec 'LogComponents' do |sss|
sss.source_files = 'RTNetworking/Components/Components/LogComponents/*.{h,m}'
end
ss.subspec 'CacheComponents' do |sss|
sss.source_files = 'RTNetworking/Components/Components/CacheComponents/*.{h,m}'
end
end
s.subspec 'Services' do |ss|
ss.source_files = 'RTNetworking/Components/Services/*.{h,m}'
ss.subspec 'Anjuke' do |sss|
sss.source_files = 'RTNetworking/Components/Services/Anjuke/*.{h,m}'
end
ss.subspec 'Broker' do |sss|
sss.source_files = 'RTNetworking/Components/Services/Broker/*.{h,m}'
end
ss.subspec 'GoogleMap' do |sss|
sss.source_files = 'RTNetworking/Components/Services/GoogleMap/*.{h,m}'
end
ss.subspec 'Haozu' do |sss|
sss.source_files = 'RTNetworking/Components/Services/Haozu/*.{h,m}'
end
ss.subspec 'GoogleMap' do |sss|
sss.source_files = 'RTNetworking/Components/Services/GoogleMap/*.{h,m}'
end
ss.subspec 'Jinpu' do |sss|
sss.source_files = 'RTNetworking/Components/Services/Jinpu/*.{h,m}'
end
ss.subspec 'Other' do |sss|
sss.source_files = 'RTNetworking/Components/Services/Other/*.{h,m}'
end
ss.subspec 'X' do |sss|
sss.source_files = 'RTNetworking/Components/Services/X/*.{h,m}'
end
ss.subspec 'Xinfang' do |sss|
sss.source_files = 'RTNetworking/Components/Services/Xinfang/*.{h,m}'
end
end
end