forked from CombineCommunity/RxCombine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RxCombine.podspec
27 lines (23 loc) · 977 Bytes
/
RxCombine.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
Pod::Spec.new do |s|
s.name = "RxCombine"
s.version = "1.0.0"
s.summary = "RxSwift is a Swift implementation of Reactive Extensions"
s.description = <<-DESC
Bi-directional type conversions between RxSwift and Apple's Combine framework.
```
DESC
s.homepage = "https://github.com/freak4pc/RxCombine"
s.license = 'MIT'
s.author = { "Shai Mishali" => "freak4pc@gmail.com" }
s.source = { :git => "https://github.com/freak4pc/RxCombine.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'
s.source_files = 'Sources/**/*.swift'
s.frameworks = ['Combine']
s.dependency 'RxSwift', '~> 5'
s.dependency 'RxRelay', '~> 5'
s.swift_version = '5.0'
end