Skip to content

Commit f81b486

Browse files
committed
Merge branch 'feature/Better-Name'
This overrides 22d2c96, which had this message: Merge pull request #2 from RougeWare/feature/Better-Name Renamed the library to fit better into the new SPM semantics
2 parents 06cb74f + 572b7a3 commit f81b486

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "PropertyWrapper Protocol",
7+
name: "PropertyWrapperProtocol",
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)