-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTBVListAdapterManager.podspec
More file actions
37 lines (30 loc) · 1.07 KB
/
TBVListAdapterManager.podspec
File metadata and controls
37 lines (30 loc) · 1.07 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
37
Pod::Spec.new do |s|
s.name = 'TBVListAdapterManager'
s.version = '0.1.0'
s.summary = 'TBVListAdapterManager.'
s.homepage = 'https://github.com/tobevoid/TBVListAdapterManager'
s.documentation_url = 'https://github.com/tobevoid/TBVListAdapterManager'
s.license = { :type => 'MIT' }
s.authors = 'tripleCC'
s.source = {
:git => 'https://github.com/tobevoid/TBVListAdapterManager.git',
:tag => s.version.to_s,
}
#s.source_files = 'TBVListAdapterManager/Classes/*'
s.ios.deployment_target = "8.0"
s.subspec 'Core' do |ss|
ss.dependency 'IGListKit', '~> 3.0'
ss.source_files = 'TBVListAdapterManager/Core/*'
ss.public_header_files = 'TBVListAdapterManager/Core/*.h'
end
s.subspec 'Validator' do |ss|
ss.dependency 'TBVListAdapterManager/Core'
ss.source_files = 'TBVListAdapterManager/Validator/*'
ss.public_header_files = 'TBVListAdapterManager/Validator/*.h'
end
s.subspec 'Traverser' do |ss|
ss.dependency 'TBVListAdapterManager/Core'
ss.source_files = 'TBVListAdapterManager/Traverser/*'
ss.public_header_files = 'TBVListAdapterManager/Traverser/*.h'
end
end