Skip to content

Commit

Permalink
RxWebKit 2.0.1 w/ SPM Support
Browse files Browse the repository at this point in the history
  • Loading branch information
freak4pc committed Feb 8, 2022
1 parent a1d52c6 commit 4f70b83
Show file tree
Hide file tree
Showing 12 changed files with 46 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"object": {
"pins": [
{
"package": "RxSwift",
"repositoryURL": "https://github.com/ReactiveX/RxSwift.git",
"state": {
"branch": null,
"revision": "b4307ba0b6425c0ba4178e138799946c3da594f8",
"version": "6.5.0"
}
}
]
},
"version": 1
}
20 changes: 20 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "RxWebKit",
platforms: [.iOS(.v9), .macOS(.v10_13)],
products: [
.library(name: "RxWebKit", targets: ["RxWebKit"])
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0"))
],
targets: [
.target(
name: "RxWebKit",
dependencies: ["RxSwift", "RxCocoa"]
)
],
swiftLanguageVersions: [.v5]
)
6 changes: 3 additions & 3 deletions RxWebKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxWebKit"
s.version = "2.0.0"
s.version = "2.0.1"
s.summary = "RxWebKit is a RxSwift wrapper for WebKit."
s.description = <<-DESC
RxWebKit is a RxSwift wrapper for `WebKit`.
Expand Down Expand Up @@ -34,8 +34,8 @@ Pod::Spec.new do |s|
"RxSwift Community" => "[email protected]"
}
s.source = { :git => "https://github.com/RxSwiftCommunity/RxWebKit.git", :tag => s.version.to_s }
s.source_files = "RxWebKit/Sources/**/*.{swift}"
s.exclude_files = "RxWebKit/Sources/**/*.{plist}"
s.source_files = "Sources/RxWebKit/**/*.{swift}"
s.exclude_files = "Sources/RxWebKit/**/*.{plist}"
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.13'
s.swift_version = '5.0'
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 4f70b83

Please sign in to comment.