Skip to content

Commit 2482e58

Browse files
committed
Rename CEExtensionKit to CodeEditKit
1 parent 7ca7961 commit 2482e58

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

Package.swift

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

66
let package = Package(
7-
name: "CEExtensionKit",
7+
name: "CodeEditKit",
88
products: [
99
// Products define the executables and libraries a package produces, and make them visible to other packages.
1010
.library(
11-
name: "CEExtensionKit",
11+
name: "CodeEditKit",
1212
type: .dynamic,
13-
targets: ["CEExtensionKit"]),
13+
targets: ["CodeEditKit"]),
1414
],
1515
dependencies: [
1616
// Dependencies declare other packages that this package depends on.
@@ -20,10 +20,10 @@ let package = Package(
2020
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2121
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2222
.target(
23-
name: "CEExtensionKit",
23+
name: "CodeEditKit",
2424
dependencies: []),
2525
.testTarget(
26-
name: "CEExtensionKitTests",
27-
dependencies: ["CEExtensionKit"]),
26+
name: "CodeEditKitTests",
27+
dependencies: ["CodeEditKit"]),
2828
]
2929
)

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# CEExtensionKit
1+
# CodeEditKit
22

3-
A description of this package.
3+
CodeEditKit is a dynamic library which is shared between CodeEdit and extensions.
4+
It allows them to understand one another.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Tests/CEExtensionKitTests/CEExtensionKitTests.swift renamed to Tests/CodeEditKitTests/CEExtensionKitTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import XCTest
2-
@testable import CEExtensionKit
2+
@testable import CodeEditKit
33

44
final class CEExtensionKitTests: XCTestCase {
55
func testExample() throws {

0 commit comments

Comments
 (0)