-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from Idea-Archive/43-tuist-introduction
🔨 :: [43] tuist적용
- Loading branch information
Showing
9 changed files
with
97 additions
and
1,177 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// swiftlint:disable all | ||
// swift-format-ignore-file | ||
// swiftformat:disable all | ||
import Foundation | ||
|
||
// MARK: - Swift Bundle Accessor | ||
|
||
private class BundleFinder {} | ||
|
||
extension Foundation.Bundle { | ||
/// Since Idea-Archive is a application, the bundle for classes within this module can be used directly. | ||
static let module = Bundle(for: BundleFinder.self) | ||
} | ||
|
||
// MARK: - Objective-C Bundle Accessor | ||
|
||
@objc | ||
public class IdeaArchiveResources: NSObject { | ||
@objc public class var bundle: Bundle { | ||
return .module | ||
} | ||
} | ||
// swiftlint:enable all | ||
// swiftformat:enable all |
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
Idea-Archive.xcodeproj/project.xcworkspace/contents.xcworkspacedata
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
Idea-Archive.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file was deleted.
Oops, something went wrong.
86 changes: 0 additions & 86 deletions
86
Idea-Archive.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
This file was deleted.
Oops, something went wrong.
77 changes: 0 additions & 77 deletions
77
Idea-Archive.xcodeproj/xcshareddata/xcschemes/Idea-Archive.xcscheme
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
project: | ||
tuist clean | ||
tuist fetch | ||
tuist generate --no-open && open Idea-Archive.xcworkspace | ||
|
||
open: | ||
tuist generate --no-open && open Idea-Archive.xcworkspace | ||
|
||
asset: | ||
tuist generate |
This file contains 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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import ProjectDescription | ||
|
||
let projectName = "Idea-Archive" | ||
let orginazationIden = ".class" | ||
|
||
let project = Project( | ||
name: projectName, | ||
organizationName: "\(projectName)-iOS", | ||
packages: [ | ||
.remote( | ||
url: "https://github.com/hackiftekhar/IQKeyboardManager.git", | ||
requirement: .upToNextMajor(from: "6.5.0") | ||
), | ||
.remote( | ||
url: "https://github.com/SnapKit/SnapKit.git", | ||
requirement: .upToNextMajor(from: "5.0.1") | ||
), | ||
.remote( | ||
url: "https://github.com/Moya/Moya.git", | ||
requirement: .upToNextMajor(from: "15.0.0") | ||
), | ||
.remote( | ||
url: "https://github.com/RxSwiftCommunity/RxKeyboard.git", | ||
requirement: .upToNextMajor(from: "2.0.1") | ||
), | ||
.remote( | ||
url: "https://github.com/devxoul/Then", | ||
requirement: .upToNextMajor(from: "2") | ||
), | ||
.package( | ||
url: "https://github.com/uuuunseo/AEOTPTextField.git", | ||
.upToNextMajor(from: "1.0.0") | ||
) | ||
], | ||
settings: nil, | ||
targets: [ | ||
Target( | ||
name: projectName, | ||
platform: .iOS, | ||
product: .app, | ||
bundleId: "\(orginazationIden).\(projectName)", | ||
deploymentTarget: .iOS(targetVersion: "15.0", devices: [.iphone, .ipad]), | ||
infoPlist: .file(path: Path("\(projectName)/Support/Info.plist")), | ||
sources: ["\(projectName)/Sources/**"], | ||
resources: ["\(projectName)/Resources/**"], | ||
dependencies: [ | ||
.package(product: "IQKeyboardManager"), | ||
.package(product: "SnapKit"), | ||
.package(product: "Moya"), | ||
.package(product: "RxKeyboard"), | ||
.package(product: "Then"), | ||
.package(product: "AEOTPTextField") | ||
] | ||
) | ||
], | ||
fileHeaderTemplate: nil, | ||
additionalFiles: [], | ||
resourceSynthesizers: [] | ||
) |