Kit
struct Kit : Codable, Equatable, Hashable
The Kit
-
The name
Declaration
Swift
let name: String
-
The Author
Declaration
Swift
let author: Author
-
The repository URL
Declaration
Swift
let repositoryURL: String
-
The Organization
Declaration
Swift
let organization: Organization
-
The optional CIService
Declaration
Swift
let ciService: CIService?
-
The ApplicationTargets
Declaration
Swift
let applicationTargets: [XcodeApplicationTarget]
-
The date
Declaration
Swift
let date: Date
-
Designated Initializer
Declaration
Swift
init(name: String, author: Author, repositoryURL: String, organization: Organization, ciService: CIService?, applicationTargets: [XcodeApplicationTarget], date: Date = .init())
Parameters
name
The Kit name
author
The Author
repositoryURL
The repository URL
organization
The Organization
ciService
The optional CIService
date
The Date. Default value
.init
-
The CIService
See moreDeclaration
Swift
enum CIService : String, Codable, Equatable, Hashable, CaseIterable
-
The Directory
See moreDeclaration
Swift
struct Directory : Codable, Equatable, Hashable
-
The Organization
See moreDeclaration
Swift
struct Organization : Codable, Equatable, Hashable
-
The Placeholders typealias represents a Dictionary
Declaration
Swift
typealias Placeholders = [String : String]
-
The Placeholders
Declaration
Swift
var placeholders: Placeholders { get }