Skip to content

Commit

Permalink
feat(podspec): add
Browse files Browse the repository at this point in the history
  • Loading branch information
TrGiLong committed May 30, 2022
1 parent cc90205 commit 493c4c0
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.5.0")),
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.5.0"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
],
targets: [
Expand Down
29 changes: 29 additions & 0 deletions RxConcurrency.podspec
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

0 comments on commit 493c4c0

Please sign in to comment.