forked from ReactiveX/RxSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxRelayAwait.podspec
35 lines (29 loc) · 1.15 KB
/
RxRelayAwait.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
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "RxRelayAwait"
s.version = "0.0.1"
s.summary = "Relays for RxSwift - PublishRelay, BehaviorRelay and ReplayRelay"
s.description = <<-DESC
Relays for RxSwiftAwait - PublishRelay, BehaviorRelay and ReplayRelay
* PublishRelay
* BehaviorRelay
* ReplayRelay
* Binding overloads
DESC
s.homepage = "https://github.com/isaac-weisberg/RxSwiftAwait"
s.license = 'MIT'
s.author = {
"Krunoslav Zaher" => "[email protected]",
'Shai "freak4pc" Mishali' => "[email protected]",
'Isaac "The Dad" Weisberg' => "[email protected]"
}
s.source = { :git => "https://github.com/isaac-weisberg/RxSwiftAwait.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '9.0'
# s.osx.deployment_target = '10.10'
# s.watchos.deployment_target = '3.0'
# s.tvos.deployment_target = '9.0'
s.source_files = 'RxRelay/**/*.{swift,h,m}'
s.dependency 'RxSwiftAwait', '6.7.1'
s.swift_version = '5.1'
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
end