forked from ReactorKit/ReactorKit
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactorKit.podspec
More file actions
Latest commit
20 lines (19 loc) · 838 Bytes
/
Copy pathReactorKit.podspec
File metadata and controls
20 lines (19 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.newdo |s|
s.name="ReactorKit"
s.version="3.0.0"
s.summary="A framework for reactive and unidirectional Swift application architecture"
s.homepage="https://github.com/ReactorKit/ReactorKit"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Suyeol Jeon"=>"devxoul@gmail.com"}
s.source={:git=>"https://github.com/ReactorKit/ReactorKit.git",
:tag=>s.version.to_s}
s.source_files="Sources/**/*.{swift,h,m}"
s.frameworks="Foundation"
s.swift_version="5.0"
s.dependency"RxSwift","~> 6.0"
s.dependency"WeakMapTable","~> 1.1"
s.ios.deployment_target="9.0"
s.osx.deployment_target="10.11"
s.tvos.deployment_target="9.0"
s.watchos.deployment_target="3.0"
end