Skip to content

Commit 4f70b83

Browse files
committed
RxWebKit 2.0.1 w/ SPM Support
1 parent a1d52c6 commit 4f70b83

12 files changed

+46
-3
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"object": {
3+
"pins": [
4+
{
5+
"package": "RxSwift",
6+
"repositoryURL": "https://github.com/ReactiveX/RxSwift.git",
7+
"state": {
8+
"branch": null,
9+
"revision": "b4307ba0b6425c0ba4178e138799946c3da594f8",
10+
"version": "6.5.0"
11+
}
12+
}
13+
]
14+
},
15+
"version": 1
16+
}

Package.swift

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// swift-tools-version:5.0
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "RxWebKit",
6+
platforms: [.iOS(.v9), .macOS(.v10_13)],
7+
products: [
8+
.library(name: "RxWebKit", targets: ["RxWebKit"])
9+
],
10+
dependencies: [
11+
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0"))
12+
],
13+
targets: [
14+
.target(
15+
name: "RxWebKit",
16+
dependencies: ["RxSwift", "RxCocoa"]
17+
)
18+
],
19+
swiftLanguageVersions: [.v5]
20+
)

RxWebKit.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxWebKit"
3-
s.version = "2.0.0"
3+
s.version = "2.0.1"
44
s.summary = "RxWebKit is a RxSwift wrapper for WebKit."
55
s.description = <<-DESC
66
RxWebKit is a RxSwift wrapper for `WebKit`.
@@ -34,8 +34,8 @@ Pod::Spec.new do |s|
3434
"RxSwift Community" => "[email protected]"
3535
}
3636
s.source = { :git => "https://github.com/RxSwiftCommunity/RxWebKit.git", :tag => s.version.to_s }
37-
s.source_files = "RxWebKit/Sources/**/*.{swift}"
38-
s.exclude_files = "RxWebKit/Sources/**/*.{plist}"
37+
s.source_files = "Sources/RxWebKit/**/*.{swift}"
38+
s.exclude_files = "Sources/RxWebKit/**/*.{plist}"
3939
s.ios.deployment_target = '9.0'
4040
s.osx.deployment_target = '10.13'
4141
s.swift_version = '5.0'
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)