Skip to content

Commit 11e0a05

Browse files
committed
ios-app: move app dir location
1 parent ba2e82c commit 11e0a05

File tree

90 files changed

+86
-1134
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+86
-1134
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ webroot/index.html
1010
node_modules
1111
.vite
1212
dist
13-
UserInterfaceState.xcuserstate
13+
.swiftpm
14+
xcuserdata
File renamed without changes.

overlord-app-ios/.swiftlint.yml renamed to app-ios/.swiftlint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
disabled_rules: # rule identifiers to exclude from running
1+
disabled_rules:
22
- trailing_whitespace
33
- vertical_whitespace
44
- opening_brace
55

6-
included: # paths to include during linting
7-
- overlord-app-ios
6+
included:
7+
- app-ios
88

9-
excluded: # paths to ignore during linting
9+
excluded:
1010
- DerivedData
1111
- Pods
1212
- build

overlord-app-ios/Makefile renamed to app-ios/Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ xcpretty:
2525
# Build the project
2626
build:
2727
@echo "Building project..."
28-
xcodebuild -scheme overlord-app-ios -sdk iphonesimulator -configuration Debug build
28+
xcodebuild -scheme app-ios -sdk iphonesimulator -configuration Debug build
2929

3030
# Clean the project
3131
clean:
3232
@echo "Cleaning project..."
33-
xcodebuild -scheme overlord-app-ios clean
33+
xcodebuild -scheme app-ios clean
3434
rm -rf build/
3535
rm -rf DerivedData/
3636

@@ -51,23 +51,23 @@ test: test-ios
5151
test-ios: xcpretty
5252
@echo "Running tests on iOS simulator..."
5353
@if command -v xcpretty >/dev/null; then \
54-
xcodebuild test -scheme overlord-app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:overlord-app-iosTests | xcpretty || \
54+
xcodebuild test -scheme app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:app-iosTests | xcpretty || \
5555
echo "Error: Could not run tests on iPhone 16 Pro Max simulator. Please ensure it is available."; \
5656
else \
5757
echo "xcpretty not available, running with standard output..."; \
58-
xcodebuild test -scheme overlord-app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:overlord-app-iosTests || \
58+
xcodebuild test -scheme app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:app-iosTests || \
5959
echo "Error: Could not run tests on iPhone 16 Pro Max simulator. Please ensure it is available."; \
6060
fi
6161

6262
# Run UI tests (requires iOS simulator)
6363
test-ui: xcpretty
6464
@echo "Running UI tests on iOS simulator..."
6565
@if command -v xcpretty >/dev/null; then \
66-
xcodebuild test -scheme overlord-app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:overlord-app-iosUITests | xcpretty || \
66+
xcodebuild test -scheme app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:app-iosUITests | xcpretty || \
6767
echo "Error: Could not run UI tests on iPhone 16 Pro Max simulator. Please ensure it is available."; \
6868
else \
6969
echo "xcpretty not available, running with standard output..."; \
70-
xcodebuild test -scheme overlord-app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:overlord-app-iosUITests || \
70+
xcodebuild test -scheme app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:app-iosUITests || \
7171
echo "Error: Could not run UI tests on iPhone 16 Pro Max simulator. Please ensure it is available."; \
7272
fi
7373

@@ -78,4 +78,4 @@ test-all: test-ios test-ui
7878
# Run tests with verbose output
7979
test-verbose:
8080
@echo "Running tests with verbose output..."
81-
xcodebuild test -scheme overlord-app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:overlord-app-iosTests
81+
xcodebuild test -scheme app-ios -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max' -only-testing:app-iosTests
File renamed without changes.

0 commit comments

Comments
 (0)