generated from Apodini/Template-Repository
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
460 additions
and
222 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
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
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 |
---|---|---|
|
@@ -17,7 +17,8 @@ extension Bubo { | |
List.self, | ||
Pull.self, | ||
Refresh.self, | ||
Remove.self | ||
Remove.self, | ||
Analyse.self | ||
]) | ||
} | ||
} |
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,60 @@ | ||
// | ||
// Created by Valentin Hartig on 25.04.20. | ||
// | ||
|
||
import Foundation | ||
import ColorizeSwift | ||
|
||
|
||
/// Output an error message on stdout. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func errorMessage(msg: String) -> Void { | ||
print("ERROR: \(msg)" .red()) | ||
} | ||
|
||
|
||
/// Output a warning message on stdout. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func warningMessage(msg: String) -> Void { | ||
print("WARNING: \(msg)" .yellow()) | ||
} | ||
|
||
|
||
/// Output a success message on stdout. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func successMessage(msg: String) -> Void { | ||
print("✓ \(msg)" .green()) | ||
} | ||
|
||
|
||
/// Output a header message on stdout that seperates different main operations. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func headerMessage(msg: String) -> Void { | ||
print(msg .bold()) | ||
} | ||
|
||
|
||
/// Output a standard output message on stdout. These are only displayed if the verbose mode is activated. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func outputMessage(msg: String) -> Void { | ||
print(msg .dim()) | ||
} | ||
|
||
|
||
/// Output an abort message on stdout when an operation is aborted due to an error | ||
/// | ||
/// - parameter msg: The message to output | ||
|
||
public func abortMessage(msg: String) -> Void { | ||
print("ABORT: \(msg)" .red()) | ||
} |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion
1
Bubo/Sources/GraphBuilderModule/IndexingServer/IndexDatabase.swift
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
import Foundation | ||
import IndexStoreDB | ||
import ResourceManagerModule | ||
|
||
|
||
/// Represents an IndexingDatabase instance | ||
|
1 change: 0 additions & 1 deletion
1
Bubo/Sources/GraphBuilderModule/IndexingServer/IndexingServer.swift
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,60 @@ | ||
// | ||
// Created by Valentin Hartig on 25.04.20. | ||
// | ||
|
||
import Foundation | ||
import ColorizeSwift | ||
|
||
|
||
/// Output an error message on stdout. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func errorMessage(msg: String) -> Void { | ||
print("ERROR: \(msg)" .red()) | ||
} | ||
|
||
|
||
/// Output a warning message on stdout. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func warningMessage(msg: String) -> Void { | ||
print("WARNING: \(msg)" .yellow()) | ||
} | ||
|
||
|
||
/// Output a success message on stdout. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func successMessage(msg: String) -> Void { | ||
print("✓ \(msg)" .green()) | ||
} | ||
|
||
|
||
/// Output a header message on stdout that seperates different main operations. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func headerMessage(msg: String) -> Void { | ||
print(msg .bold()) | ||
} | ||
|
||
|
||
/// Output a standard output message on stdout. These are only displayed if the verbose mode is activated. | ||
/// | ||
/// - parameter msg: The message to output. | ||
|
||
public func outputMessage(msg: String) -> Void { | ||
print(msg .dim()) | ||
} | ||
|
||
|
||
/// Output an abort message on stdout when an operation is aborted due to an error | ||
/// | ||
/// - parameter msg: The message to output | ||
|
||
public func abortMessage(msg: String) -> Void { | ||
print("ABORT: \(msg)" .red()) | ||
} |
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
|
||
import Foundation | ||
import IndexStoreDB | ||
import ResourceManagerModule | ||
|
||
extension GraphBuilder { | ||
|
||
|
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
|
||
import Foundation | ||
import IndexStoreDB | ||
import ResourceManagerModule | ||
|
||
extension GraphBuilder { | ||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
// | ||
|
||
import Foundation | ||
import ResourceManagerModule | ||
|
||
extension GraphBuilder { | ||
|
||
|
4 changes: 0 additions & 4 deletions
4
Bubo/Sources/GraphBuilderModule/RefinedGraph/CreateRefindedDependencyGraph.swift
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
// | ||
|
||
import Foundation | ||
|
||
import GraphBuilderModule | ||
|
||
|
||
extension ResourceManager { | ||
|
Oops, something went wrong.