forked from QuickBirdEng/XCoordinator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
XCoordinator.podspec
30 lines (27 loc) · 1.19 KB
/
XCoordinator.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
Pod::Spec.new do |spec|
spec.name = 'XCoordinator'
spec.version = '2.0.7'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/quickbirdstudios/XCoordinator'
spec.authors = { 'Stefan Kofler' => '[email protected]', 'Paul Kraft' => '[email protected]' }
spec.summary = 'Navigation framework based on coordinator pattern.'
spec.source = { :git => 'https://github.com/quickbirdstudios/XCoordinator.git', :tag => spec.version }
spec.module_name = 'XCoordinator'
spec.swift_version = '5.1'
spec.ios.deployment_target = '8.0'
spec.source_files = 'Sources/XCoordinator/*.swift'
spec.default_subspec = 'Core'
spec.subspec 'Core' do |ss|
ss.source_files = 'Sources/XCoordinator/*.swift'
ss.framework = 'UIKit'
end
spec.subspec 'RxSwift' do |ss|
ss.dependency 'XCoordinator/Core'
ss.dependency 'RxSwift', '~> 6.2.0'
ss.source_files = 'Sources/XCoordinatorRx/*.swift'
end
spec.subspec 'Combine' do |ss|
ss.dependency 'XCoordinator/Core'
ss.source_files = 'Sources/XCoordinatorCombine/*.swift'
end
end