Skip to content
This repository was archived by the owner on Aug 10, 2024. It is now read-only.

Commit 9c899a7

Browse files
committed
Remove RSDatabaseQueue. Clean up Package.swift file.
1 parent 17950e2 commit 9c899a7

File tree

4 files changed

+6
-303
lines changed

4 files changed

+6
-303
lines changed

Package.swift

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
// swift-tools-version:5.3
2-
// The swift-tools-version declares the minimum version of Swift required to build this package.
1+
// swift-tools-version:5.9
32

43
import PackageDescription
54

65
let package = Package(
76
name: "RSDatabase",
8-
platforms: [.macOS(SupportedPlatform.MacOSVersion.v10_15), .iOS(SupportedPlatform.IOSVersion.v13)],
7+
platforms: [.macOS(.v10_15), .iOS(.v13)],
98
products: [
10-
// Products define the executables and libraries a package produces, and make them visible to other packages.
119
.library(
1210
name: "RSDatabase",
1311
type: .dynamic,
@@ -18,22 +16,21 @@ let package = Package(
1816
targets: ["RSDatabaseObjC"]),
1917
],
2018
dependencies: [
21-
// Dependencies declare other packages that this package depends on.
22-
// .package(url: /* package url */, from: "1.0.0"),
2319
],
2420
targets: [
2521
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2622
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2723
.target(
2824
name: "RSDatabase",
29-
dependencies: ["RSDatabaseObjC"],
30-
exclude: ["ODB/README.markdown"]),
25+
dependencies: ["RSDatabaseObjC"]
26+
),
3127
.target(
3228
name: "RSDatabaseObjC",
3329
dependencies: []
3430
),
3531
.testTarget(
3632
name: "RSDatabaseTests",
37-
dependencies: ["RSDatabase"]),
33+
dependencies: ["RSDatabase"]
34+
),
3835
]
3936
)

Sources/RSDatabaseObjC/RSDatabaseQueue.h

Lines changed: 0 additions & 63 deletions
This file was deleted.

Sources/RSDatabaseObjC/RSDatabaseQueue.m

Lines changed: 0 additions & 227 deletions
This file was deleted.

Sources/RSDatabaseObjC/include/RSDatabaseObjC.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,3 @@
1111
#import "../FMDatabase+RSExtras.h"
1212
#import "../FMResultSet+RSExtras.h"
1313
#import "../NSString+RSDatabase.h"
14-
15-
// RSDatabase
16-
17-
#import "../RSDatabaseQueue.h"

0 commit comments

Comments
 (0)