forked from QuickBirdEng/XCoordinator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrx-coordinator.podspec
More file actions
18 lines (18 loc) 路 813 Bytes
/
Copy pathrx-coordinator.podspec
File metadata and controls
18 lines (18 loc) 路 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = 'rx-coordinator'
spec.version = '0.6.0'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/quickbirdstudios/RxCoordinator'
spec.authors = { 'Stefan Kofler' => 'stefan.kofler@quickbirdstudios.com' }
spec.summary = 'Navigation framework based on coordinator pattern.'
spec.source = { :git => 'https://github.com/quickbirdstudios/RxCoordinator.git', :tag => spec.version }
spec.module_name = 'RxCoordinator'
spec.swift_version = '4.1'
spec.ios.deployment_target = '9.0'
spec.tvos.deployment_target = '9.0'
spec.source_files = 'RxCoordinator/Sources/*.swift'
spec.framework = 'Foundation'
spec.framework = 'UIKit'
spec.dependency 'RxSwift', '~> 4.0'
spec.dependency 'RxCocoa', '~> 4.0'
end