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
22 lines (20 loc) · 827 Bytes
/
ReactorKit.podspec
File metadata and controls
22 lines (20 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "ReactorKit"
s.version = "0.4.5"
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"
s.frameworks = "Foundation"
s.dependency "RxSwift", ">= 3.0.0"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.11"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.pod_target_xcconfig = {
"SWIFT_VERSION" => "3.0"
}
end