Skip to content

Commit 11eaa70

Browse files
committed
rename
1 parent 6e102ef commit 11eaa70

14 files changed

Lines changed: 17 additions & 18 deletions

Package.swift

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11
// swift-tools-version:4.0
2-
// The swift-tools-version declares the minimum version of Swift required to build this package.
3-
42
import PackageDescription
53

4+
65
let package = Package(
7-
name: "XMLParsing",
6+
name: "XMLCoding",
87
products: [
9-
// Products define the executables and libraries produced by a package, and make them visible to other packages.
108
.library(
11-
name: "XMLParsing",
12-
targets: ["XMLParsing"]),
13-
],
14-
dependencies: [
15-
// Dependencies declare other packages that this package depends on.
16-
// .package(url: /* package url */, from: "1.0.0"),
17-
],
9+
name: "XMLCoding",
10+
targets: [
11+
"XMLCoding"
12+
]
13+
),
14+
],
1815
targets: [
19-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
20-
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2116
.target(
22-
name: "XMLParsing",
23-
dependencies: []),
17+
name: "XMLCoding",
18+
dependencies: []
19+
),
2420
.testTarget(
25-
name: "XMLParsingTests",
26-
dependencies: ["XMLParsing"]),
27-
]
21+
name: "XMLCodingTests",
22+
dependencies: [
23+
"XMLCoding"
24+
]
25+
),
26+
]
2827
)

Sources/XMLParsing/Decoder/DecodingErrorExtension.swift renamed to Sources/XMLCoding/Decoder/DecodingErrorExtension.swift

File renamed without changes.
File renamed without changes.
File renamed without changes.

Sources/XMLParsing/Decoder/XMLKeyedDecodingContainer.swift renamed to Sources/XMLCoding/Decoder/XMLKeyedDecodingContainer.swift

File renamed without changes.

Sources/XMLParsing/Decoder/XMLUnkeyedDecodingContainer.swift renamed to Sources/XMLCoding/Decoder/XMLUnkeyedDecodingContainer.swift

File renamed without changes.

Sources/XMLParsing/Encoder/EncodingErrorExtension.swift renamed to Sources/XMLCoding/Encoder/EncodingErrorExtension.swift

File renamed without changes.
File renamed without changes.
File renamed without changes.

Sources/XMLParsing/Encoder/XMLReferencingEncoder.swift renamed to Sources/XMLCoding/Encoder/XMLReferencingEncoder.swift

File renamed without changes.

0 commit comments

Comments
 (0)