diff --git a/.hermes/skills/devlog-architecture-harness/SKILL.md b/.hermes/skills/devlog-architecture-harness/SKILL.md index 2da1b998..039fdbee 100644 --- a/.hermes/skills/devlog-architecture-harness/SKILL.md +++ b/.hermes/skills/devlog-architecture-harness/SKILL.md @@ -1,6 +1,6 @@ --- name: devlog-architecture-harness -description: Use before architecture, modularization, dependency-boundary, DI, repository, Firebase-boundary, or widget-data-flow work in the SwiftUI_DevLog repository. +description: Use before architecture, modularization, dependency-boundary, DI, repository, Firebase-boundary, or widget-data-flow work in the DevLog_iOS repository. version: 1.0.0 metadata: hermes: diff --git a/Application/DevLogApp/Tests/Support/LocalFirebaseRESTSupport.swift b/Application/DevLogApp/Tests/Support/LocalFirebaseRESTSupport.swift index 210a360e..5c55edd7 100644 --- a/Application/DevLogApp/Tests/Support/LocalFirebaseRESTSupport.swift +++ b/Application/DevLogApp/Tests/Support/LocalFirebaseRESTSupport.swift @@ -149,7 +149,8 @@ final class LocalFirebaseRESTSupport { func fetchPushNotificationIDs(userId: String) async throws -> [String] { let googleServiceInfo = try loadGoogleServiceInfo() let url = firestoreBaseURL.appending( - path: "v1/projects/\(googleServiceInfo.projectId)/databases/(default)/documents/users/\(userId)/notifications", + path: "v1/projects/\(googleServiceInfo.projectId)/databases/(default)/documents/users/" + + "\(userId)/notifications", directoryHint: .notDirectory ) let (data, response) = try await URLSession.shared.data(from: url) @@ -242,7 +243,7 @@ private extension LocalFirebaseRESTSupport { func loadGoogleServiceInfo() throws -> GoogleServiceInfo { var fileURL = URL(fileURLWithPath: #filePath) - while fileURL.lastPathComponent != "SwiftUI_DevLog" { + while fileURL.lastPathComponent != "DevLog_iOS" { let nextURL = fileURL.deletingLastPathComponent() if nextURL == fileURL { throw RESTError.missingConfiguration diff --git a/README.md b/README.md index ae57119b..a2dd9763 100644 --- a/README.md +++ b/README.md @@ -192,7 +192,7 @@ mise exec -- tuist generate --no-open ## 프로젝트 구조 ```text -SwiftUI_DevLog/ +DevLog_iOS/ ├── Tuist.swift ├── Workspace.swift ├── .mise.toml diff --git a/docs/superpowers/specs/2026-06-01-tuist-migration-design.md b/docs/superpowers/specs/2026-06-01-tuist-migration-design.md index d0e29c4b..872a1c30 100644 --- a/docs/superpowers/specs/2026-06-01-tuist-migration-design.md +++ b/docs/superpowers/specs/2026-06-01-tuist-migration-design.md @@ -2,7 +2,7 @@ ## 목표 -기존 `SwiftUI_DevLog`의 모듈 경계와 의존성 방향을 유지한 채, 수동 관리 중인 Xcode 프로젝트/워크스페이스를 Tuist 기반 생성 구조로 전환한다. +기존 `DevLog_iOS`의 모듈 경계와 의존성 방향을 유지한 채, 수동 관리 중인 Xcode 프로젝트/워크스페이스를 Tuist 기반 생성 구조로 전환한다. ## 버전 선택