-
Notifications
You must be signed in to change notification settings - Fork 3
/
RxConcurrency.podspec
29 lines (22 loc) · 1.11 KB
/
RxConcurrency.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
Pod::Spec.new do |s|
s.name = 'RxConcurrency'
s.version = '0.1.1'
s.summary = 'A small set of extensions that allow to combine new swift concurrency with RxSwift.'
s.description = <<-DESC
A small set of extensions that allow to combine new swift concurrency with RxSwift.
This package is actively under development. I appreciate any code improvements or new features.
DESC
s.homepage = 'https://github.com/TrGiLong/RxConcurrency'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Long Tran' => '[email protected]' }
s.source = { :git => '[email protected]:TrGiLong/RxConcurrency.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/RxConcurrency/**/*'
s.swift_version = '5.5'
s.pod_target_xcconfig = {
'SWIFT_OPTIMIZATION_LEVEL' => '-O'
}
s.dependency 'RxSwift', '~> 6.5.0'
end