56 lines
1.5 KiB
Swift
56 lines
1.5 KiB
Swift
import Foundation
|
|
import LibraryDemo_FlagKit
|
|
|
|
extension Libraries {
|
|
|
|
static let FlagKit = Library(
|
|
id: "flag-kit",
|
|
name: "FlagKit",
|
|
description: .init(
|
|
short: "Beautiful flag icons",
|
|
full: nil
|
|
),
|
|
preview: .init(
|
|
logo: nil,
|
|
title: "FlagKit",
|
|
subtitle: "Beautiful flag icons"
|
|
),
|
|
developers: [
|
|
.init(
|
|
name: "Bowtie",
|
|
contactInformation: ContactInformation(
|
|
email: "howdy@bowtie.se",
|
|
website: "http://bowtie.se"
|
|
),
|
|
isCompany: true
|
|
)
|
|
],
|
|
links: LibraryLinks(
|
|
github: GitHubRepositoryLink(
|
|
user: "madebybowtie",
|
|
repository: "FlagKit"
|
|
),
|
|
other: []
|
|
),
|
|
integration: Integration(
|
|
cocoapods: CocoaPodsIntegration(
|
|
instruction: "pod 'FlagKit'"
|
|
),
|
|
carthage: CarthageIntegration(
|
|
instruction: "github \"madebybowtie/FlagKit\""
|
|
),
|
|
swiftPackageManager: nil
|
|
),
|
|
tags: [
|
|
.ui
|
|
],
|
|
license: .mit(),
|
|
demoScreen: .init(
|
|
viewControllerClass: LibraryDemoViewController.self,
|
|
nibName: "",
|
|
bundleIdentifier: "com.wizman.awesome-libraries.LibraryDemo-FlagKit",
|
|
enabled: true
|
|
)
|
|
)
|
|
}
|