This repository was archived by the owner on Jun 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Using JobInterviewAssignmentKit #8
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
c72452d
Testing
RomanPodymov ee780e3
Using Kit
RomanPodymov 3043a4e
BookScreen with new Kit
RomanPodymov 852f1f1
Generics
RomanPodymov 26c87a4
Merge branch 'main' into feature/kit
RomanPodymov 89978ca
Merge branch 'main' into feature/kit
RomanPodymov 342a08d
Merge branch 'main' into feature/kit
RomanPodymov e94b6eb
Runnable
RomanPodymov 4d39a9d
Using BasicViewModel
RomanPodymov e4043fa
Fixing errors
RomanPodymov 879d4d0
Uncommenting
RomanPodymov f42b36b
All uncommented
RomanPodymov cd196ef
Using remote version
RomanPodymov b10c083
Remove unused code
RomanPodymov 4c2973b
Fix tests
RomanPodymov 392ad4a
Init viewModel
RomanPodymov d15477f
any
RomanPodymov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,6 +44,9 @@ packages: | |
| OrderedCollections: | ||
| url: https://github.com/apple/swift-collections | ||
| version: 1.1.4 | ||
| JobInterviewAssignmentKit: | ||
| url: https://github.com/RomanPodymov/JobInterviewAssignmentKit | ||
| version: 0.0.1 | ||
| RealmSwift: | ||
| url: https://github.com/realm/realm-swift.git | ||
| version: 20.0.2 | ||
|
|
@@ -70,6 +73,7 @@ targets: | |
| - package: UICollectionViewLeftAlignedLayout | ||
| - package: SwiftAlertView | ||
| - package: OrderedCollections | ||
| - package: JobInterviewAssignmentKit | ||
| - package: RealmSwift | ||
| embed: true | ||
| info: | ||
|
|
@@ -78,17 +82,18 @@ targets: | |
| NSAppTransportSecurity: | ||
| NSAllowsArbitraryLoads: YES | ||
| preBuildScripts: | ||
| - script: "mint run swiftgen" | ||
| - script: "/opt/homebrew/bin/mint run swiftgen" | ||
| name: SwiftGen | ||
| postCompileScripts: | ||
| - script: "mint run swiftformat . --swiftversion 5.5" | ||
| - script: "/opt/homebrew/bin/mint run swiftformat . --swiftversion 5.5" | ||
| name: SwiftFormat | ||
| - script: "mint run swiftlint" | ||
| - script: "/opt/homebrew/bin/mint run swiftlint" | ||
|
Comment on lines
+85
to
+90
|
||
| name: SwiftLint | ||
| BookieAppTests: | ||
| settings: | ||
| base: | ||
| SWIFT_VERSION: 6 | ||
| SWIFT_ACTIVE_COMPILATION_CONDITIONS: ${SWIFT_ACTIVE_COMPILATION_CONDITIONS} | ||
| type: bundle.unit-test | ||
| platform: iOS | ||
| sources: [BookieTests] | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Changing the viewModel from private to internal exposes it beyond the class; consider whether this exposure is intentional or if encapsulation should be maintained.