-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAstrolabe.podspec
34 lines (27 loc) · 999 Bytes
/
Astrolabe.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
Pod::Spec.new do |s|
s.name = 'Astrolabe'
s.version = '5.1.9'
s.summary = 'Cells management library'
s.homepage = 'https://github.com/netcosports/Astrolabe'
s.license = { :type => "MIT" }
s.author = {
'Sergei Mikhan' => '[email protected]',
'Vladimir Burdukov' => '[email protected]'
}
s.source = { :git => 'https://github.com/netcosports/Astrolabe.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.swift_versions = ['5.0', '5.1']
s.default_subspec = 'Core'
s.subspec 'Core' do |sub|
sub.source_files = 'Sources/Core/*.swift'
sub.tvos.exclude_files = ['Sources/Core/*PagerSource.swift', 'Sources/Core/*PagerCollectionViewCell.swift']
sub.dependency 'RxSwift', '~> 5'
sub.dependency 'RxCocoa', '~> 5'
end
s.subspec 'Loaders' do |sub|
sub.source_files = 'Sources/Loaders/*.swift'
sub.dependency 'Gnomon/Core', '~> 5'
sub.dependency 'Astrolabe/Core'
end
end