Skip to content

Commit 25506e5

Browse files
committed
Renamed the library to fit better into the new SPM semantics
Since it doesn't translate spaces into underscores anymore, this changes the library's name to be CapitalizedCamelCase
1 parent 06cb74f commit 25506e5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ let package = Package(
88
products: [
99
// Products define the executables and libraries produced by a package, and make them visible to other packages.
1010
.library(
11-
name: "PropertyWrapper Protocol",
12-
targets: ["PropertyWrapper Protocol"]),
11+
name: "PropertyWrapperProtocol",
12+
targets: ["PropertyWrapperProtocol"]),
1313
],
1414
dependencies: [
1515
// Dependencies declare other packages that this package depends on.
@@ -19,10 +19,10 @@ let package = Package(
1919
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2020
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2121
.target(
22-
name: "PropertyWrapper Protocol",
22+
name: "PropertyWrapperProtocol",
2323
dependencies: []),
2424
.testTarget(
25-
name: "PropertyWrapper ProtocolTests",
26-
dependencies: ["PropertyWrapper Protocol"]),
25+
name: "PropertyWrapperProtocolTests",
26+
dependencies: ["PropertyWrapperProtocol"]),
2727
]
2828
)

Sources/PropertyWrapper Protocol/PropertyWrapper_Protocol.swift renamed to Sources/PropertyWrapperProtocol/PropertyWrapper.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// PropertyWrapper_Protocol.swift
2+
// PropertyWrapper.swift
33
// PropertyWrapper Protocol
44
//
55
// Created by Ben Leggiero on 2019-09-23.

Tests/PropertyWrapper ProtocolTests/PropertyWrapper_ProtocolTests.swift renamed to Tests/PropertyWrapperProtocolTests/PropertyWrapper_ProtocolTests.swift

File renamed without changes.

Tests/PropertyWrapper ProtocolTests/XCTestManifests.swift renamed to Tests/PropertyWrapperProtocolTests/XCTestManifests.swift

File renamed without changes.

0 commit comments

Comments
 (0)