-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'RxConcurrency' | ||
s.version = '0.1.0' | ||
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 |