- Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathRxViewController.podspec
More file actions
Latest commit
19 lines (18 loc) · 784 Bytes
/
Copy pathRxViewController.podspec
File metadata and controls
19 lines (18 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.newdo |s|
s.name="RxViewController"
s.version="2.0.0"
s.summary="RxSwift wrapper for UIViewController and NSViewController"
s.homepage="https://github.com/devxoul/RxViewController"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Suyeol Jeon"=>"devxoul@gmail.com"}
s.source={:git=>"https://github.com/devxoul/RxViewController.git",
:tag=>s.version.to_s}
s.source_files="Sources/**/*.swift"
s.frameworks="Foundation"
s.dependency"RxSwift","~> 6.0"
s.dependency"RxCocoa","~> 6.0"
s.swift_version="5.0"
s.ios.deployment_target="9.0"
s.osx.deployment_target="10.11"
s.tvos.deployment_target="9.0"
end