aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2024-07-28 14:55:56 -0600
committerNavan Chauhan <navanchauhan@gmail.com>2024-07-28 14:55:56 -0600
commit06649f47a8b1d65590ee8a8f78668d064e92f56b (patch)
treed3566b5e9bcc233864407e2389c51fc6b9657e3e
parentd983c019c74c75eb18e68dfc6d31c5e4ddb2f6f6 (diff)
rename and capitalize
-rw-r--r--.spi.yml2
-rw-r--r--Package.swift12
-rw-r--r--Sources/SwiftGopherClient/gopherClient.swift (renamed from Sources/swiftGopherClient/gopherClient.swift)0
-rw-r--r--Sources/SwiftGopherClient/gopherRequestResponseHandler.swift (renamed from Sources/swiftGopherClient/gopherRequestResponseHandler.swift)0
-rw-r--r--Tests/SwiftGopherClientTests/SwiftGopherClientTests.swift (renamed from Tests/swiftGopherClientTests/swiftGopherClientTests.swift)2
-rw-r--r--Tests/SwiftGopherServerTests/SwiftGopherServerTests.swift (renamed from Tests/swiftGopherServerTests/swiftGopherServerTests.swift)0
6 files changed, 8 insertions, 8 deletions
diff --git a/.spi.yml b/.spi.yml
index 75437bd..7cd62b6 100644
--- a/.spi.yml
+++ b/.spi.yml
@@ -1,4 +1,4 @@
version: 1
builder:
configs:
- - documentation_targets: [swiftGopherClient, swift-gopher, GopherHelpers]
+ - documentation_targets: [SwiftGopherClient, swift-gopher, GopherHelpers]
diff --git a/Package.swift b/Package.swift
index 546655a..370414c 100644
--- a/Package.swift
+++ b/Package.swift
@@ -4,9 +4,9 @@
import PackageDescription
let package = Package(
- name: "swiftGopher",
+ name: "SwiftGopher",
products: [
- .library(name: "SwiftGopherClient", targets: ["swiftGopherClient"])
+ .library(name: "SwiftGopherClient", targets: ["SwiftGopherClient"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio", from: "2.0.0"),
@@ -36,7 +36,7 @@ let package = Package(
]
),
.target(
- name: "swiftGopherClient",
+ name: "SwiftGopherClient",
dependencies: [
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOTransportServices", package: "swift-nio-transport-services"),
@@ -44,9 +44,9 @@ let package = Package(
]
),
.testTarget(
- name: "swiftGopherClientTests",
- dependencies: ["swiftGopherClient"]
+ name: "SwiftGopherClientTests",
+ dependencies: ["SwiftGopherClient"]
),
- .testTarget(name: "swiftGopherServerTests", dependencies: ["swift-gopher"])
+ .testTarget(name: "SwiftGopherServerTests", dependencies: ["swift-gopher"])
]
)
diff --git a/Sources/swiftGopherClient/gopherClient.swift b/Sources/SwiftGopherClient/gopherClient.swift
index 3fd61ec..3fd61ec 100644
--- a/Sources/swiftGopherClient/gopherClient.swift
+++ b/Sources/SwiftGopherClient/gopherClient.swift
diff --git a/Sources/swiftGopherClient/gopherRequestResponseHandler.swift b/Sources/SwiftGopherClient/gopherRequestResponseHandler.swift
index 10da67e..10da67e 100644
--- a/Sources/swiftGopherClient/gopherRequestResponseHandler.swift
+++ b/Sources/SwiftGopherClient/gopherRequestResponseHandler.swift
diff --git a/Tests/swiftGopherClientTests/swiftGopherClientTests.swift b/Tests/SwiftGopherClientTests/SwiftGopherClientTests.swift
index 088124d..2f559cd 100644
--- a/Tests/swiftGopherClientTests/swiftGopherClientTests.swift
+++ b/Tests/SwiftGopherClientTests/SwiftGopherClientTests.swift
@@ -8,7 +8,7 @@
import NIO
import XCTest
-@testable import swiftGopherClient
+@testable import SwiftGopherClient
final class GopherClientTests: XCTestCase {
diff --git a/Tests/swiftGopherServerTests/swiftGopherServerTests.swift b/Tests/SwiftGopherServerTests/SwiftGopherServerTests.swift
index 0413d90..0413d90 100644
--- a/Tests/swiftGopherServerTests/swiftGopherServerTests.swift
+++ b/Tests/SwiftGopherServerTests/SwiftGopherServerTests.swift