Skip to content

Commit

Permalink
Update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
AVI5HEK committed Nov 2, 2023
1 parent 175bc48 commit 9c79a0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ios
Submodule ios updated 70 files
+0 −0 .github/project_workflows/automatic_pull_request_review.yml
+5 −0 .github/project_workflows/deploy_app_store.yml
+5 −0 .github/project_workflows/deploy_production_firebase.yml
+5 −0 .github/project_workflows/deploy_staging_firebase.yml
+0 −0 .github/project_workflows/draft_a_new_release.yml
+19 −0 .github/project_workflows/publish_docs_to_wiki.yml
+1 −2 .github/wiki/Deliverable-Configurations.md
+17 −1 .github/wiki/Getting-Started.md
+11 −0 .github/wiki/Selecting-User-Interface.md
+1 −0 .github/wiki/_Sidebar.md
+27 −0 .github/workflows/test_swiftui_install_script.yml
+3 −5 .github/workflows/test_uikit_install_script.yml
+7 −2 .github/workflows/test_upload_build_to_firebase.yml
+7 −2 .github/workflows/test_upload_build_to_test_flight.yml
+1 −0 .gitignore
+1 −0 .swiftlint.yml
+0 −2 Dangerfile
+2 −0 Gemfile
+2 −2 README.md
+14 −0 Scripts/Swift/iOSTemplateMaker/Package.resolved
+28 −0 Scripts/Swift/iOSTemplateMaker/Package.swift
+108 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/Extensions/FileManager+Utils.swift
+18 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/Extensions/Optional+Utils.swift
+11 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/Extensions/String+Utils.swift
+15 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/Helpers/EnvironmentValue.swift
+20 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/Helpers/SafeShell.swift
+23 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/Models/EnvironmentKey.swift
+57 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpCICDService.swift
+21 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpDeliveryConstants.swift
+49 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpInterface.swift
+23 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpTestFirebase.swift
+23 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpTestTestFlight.swift
+193 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpiOSProject.swift
+78 −0 Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/iOSTemplateMaker.swift
+0 −0 Scripts/Swift/iOSTemplateMaker/Tests/iOSTemplateMakerTests/.gitkeep
+0 −3 Tuist/Interfaces/SwiftUI/Project/.sourcery.yml
+61 −0 Tuist/Interfaces/SwiftUI/Project/Podfile
+10 −0 Tuist/Interfaces/SwiftUI/Sources/Application/App.swift
+0 −0 Tuist/Interfaces/SwiftUI/Sources/Presentation/Coordinators/.gitkeep
+0 −0 Tuist/Interfaces/SwiftUI/Sources/Presentation/Models/.gitkeep
+13 −0 Tuist/Interfaces/SwiftUI/Sources/Presentation/Modules/HomeView.swift
+0 −0 Tuist/Interfaces/SwiftUI/Sources/Presentation/Styles/.gitkeep
+0 −0 Tuist/Interfaces/SwiftUI/Sources/Presentation/ViewIds/.gitkeep
+0 −0 Tuist/Interfaces/SwiftUI/Sources/Presentation/ViewModifiers/.gitkeep
+0 −0 Tuist/Interfaces/SwiftUI/Sources/Presentation/Views/.gitkeep
+9 −0 Tuist/Interfaces/UIKit/Project/.sourcery.yml
+7 −10 Tuist/Interfaces/UIKit/Project/Podfile
+0 −0 Tuist/Interfaces/UIKit/Sources/Application/AppDelegate.swift
+1 −1 Tuist/Interfaces/UIKit/Sources/Presentation/Modules/HomeViewController.swift
+0 −0 Tuist/Interfaces/UIKit/Sources/Presentation/Navigator/Navigator+Scene.swift
+0 −0 Tuist/Interfaces/UIKit/Sources/Presentation/Navigator/Navigator+Transition.swift
+0 −0 Tuist/Interfaces/UIKit/Sources/Presentation/Navigator/Navigator.swift
+0 −0 Tuist/Interfaces/UIKit/Sources/Presentation/Views/.gitkeep
+0 −26 deliverable_setup.sh
+1 −1 fastlane/Constants/Constant.swift
+5 −0 fastlane/Fastfile.swift
+8 −0 fastlane/Helpers/Keychain.swift
+0 −215 make.sh
+0 −12 set_up_test_firebase.sh
+0 −12 set_up_test_testflight.sh
+9 −20 {PROJECT_NAME}/Sources/Data/NetworkAPI/Core/NetworkAPIProtocol.swift
+5 −4 {PROJECT_NAME}/Sources/Data/NetworkAPI/NetworkAPI.swift
+3 −3 {PROJECT_NAME}KIFUITests/Sources/Specs/Application/ApplicationSpec.swift
+5 −5 {PROJECT_NAME}KIFUITests/Sources/Utilities/KIF+Swift.swift
+10 −0 {PROJECT_NAME}KIFUITests/Sources/Utilities/KIFSpec.swift
+14 −0 {PROJECT_NAME}Tests/Sources/Dummy/Data/DummyNetworkModel.swift
+29 −0 {PROJECT_NAME}Tests/Sources/Dummy/Data/DummyRequestConfiguration.swift
+64 −0 {PROJECT_NAME}Tests/Sources/Specs/Data/NetworkAPI/NetworkAPISpec.swift
+1 −1 {PROJECT_NAME}Tests/Sources/Specs/Supports/Extensions/Foundation/OptionalUnwrapSpec.swift
+32 −0 {PROJECT_NAME}Tests/Sources/Utilities/NetworkStubber.swift

0 comments on commit 9c79a0d

Please sign in to comment.