Skip to content

Commit ab8703b

Browse files
authored
[#632] 리포지토리 이름을 바꾼다 (#633)
chore: DevLog_iOS 디렉토리명 참조 정리
1 parent 59c64ac commit ab8703b

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

.hermes/skills/devlog-architecture-harness/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: devlog-architecture-harness
3-
description: Use before architecture, modularization, dependency-boundary, DI, repository, Firebase-boundary, or widget-data-flow work in the SwiftUI_DevLog repository.
3+
description: Use before architecture, modularization, dependency-boundary, DI, repository, Firebase-boundary, or widget-data-flow work in the DevLog_iOS repository.
44
version: 1.0.0
55
metadata:
66
hermes:

Application/DevLogApp/Tests/Support/LocalFirebaseRESTSupport.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ final class LocalFirebaseRESTSupport {
149149
func fetchPushNotificationIDs(userId: String) async throws -> [String] {
150150
let googleServiceInfo = try loadGoogleServiceInfo()
151151
let url = firestoreBaseURL.appending(
152-
path: "v1/projects/\(googleServiceInfo.projectId)/databases/(default)/documents/users/\(userId)/notifications",
152+
path: "v1/projects/\(googleServiceInfo.projectId)/databases/(default)/documents/users/" +
153+
"\(userId)/notifications",
153154
directoryHint: .notDirectory
154155
)
155156
let (data, response) = try await URLSession.shared.data(from: url)
@@ -242,7 +243,7 @@ private extension LocalFirebaseRESTSupport {
242243
func loadGoogleServiceInfo() throws -> GoogleServiceInfo {
243244
var fileURL = URL(fileURLWithPath: #filePath)
244245

245-
while fileURL.lastPathComponent != "SwiftUI_DevLog" {
246+
while fileURL.lastPathComponent != "DevLog_iOS" {
246247
let nextURL = fileURL.deletingLastPathComponent()
247248
if nextURL == fileURL {
248249
throw RESTError.missingConfiguration

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ mise exec -- tuist generate --no-open
192192
## 프로젝트 구조
193193

194194
```text
195-
SwiftUI_DevLog/
195+
DevLog_iOS/
196196
├── Tuist.swift
197197
├── Workspace.swift
198198
├── .mise.toml

docs/superpowers/specs/2026-06-01-tuist-migration-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 목표
44

5-
기존 `SwiftUI_DevLog`의 모듈 경계와 의존성 방향을 유지한 채, 수동 관리 중인 Xcode 프로젝트/워크스페이스를 Tuist 기반 생성 구조로 전환한다.
5+
기존 `DevLog_iOS`의 모듈 경계와 의존성 방향을 유지한 채, 수동 관리 중인 Xcode 프로젝트/워크스페이스를 Tuist 기반 생성 구조로 전환한다.
66

77
## 버전 선택
88

0 commit comments

Comments
 (0)