forked from SwiftDocOrg/GraphViz
-
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.
Reorganize and rename package targets (SwiftDocOrg#15)
* Reorganize and rename package targets * Fix dependencies of GraphVizTests * Update example usage in README * Add changelog entry for SwiftDocOrg#15
- Loading branch information
Showing
42 changed files
with
42 additions
and
43 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
2 changes: 1 addition & 1 deletion
2
...zBuilder/Extensions/Edge+Extensions.swift → .../Builder/Extensions/Edge+Extensions.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
2 changes: 1 addition & 1 deletion
2
...Builder/Extensions/Graph+Extensions.swift → ...Builder/Extensions/Graph+Extensions.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,4 +1,4 @@ | ||
import GraphViz | ||
import Core | ||
|
||
extension Graph { | ||
typealias Fragment = GraphBuilder.Fragment | ||
|
2 changes: 1 addition & 1 deletion
2
...zBuilder/Extensions/Node+Extensions.swift → .../Builder/Extensions/Node+Extensions.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
2 changes: 1 addition & 1 deletion
2
...lder/Extensions/Subgraph+Extensions.swift → ...lder/Extensions/Subgraph+Extensions.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,4 +1,4 @@ | ||
import GraphViz | ||
import Core | ||
|
||
extension Subgraph { | ||
typealias Fragment = SubgraphBuilder.Fragment | ||
|
2 changes: 1 addition & 1 deletion
2
Sources/GraphVizBuilder/GraphBuilder.swift → Sources/Builder/GraphBuilder.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,4 +1,4 @@ | ||
import GraphViz | ||
import Core | ||
|
||
public protocol GraphMember {} | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...lder/Operators/BackwardEdgeOperator.swift → ...lder/Operators/BackwardEdgeOperator.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,4 +1,4 @@ | ||
import GraphViz | ||
import Core | ||
|
||
infix operator <-- : AdditionPrecedence | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...Operators/BidirectionalEdgeOperator.swift → ...Operators/BidirectionalEdgeOperator.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,4 +1,4 @@ | ||
import GraphViz | ||
import Core | ||
|
||
infix operator <-> : AdditionPrecedence | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ilder/Operators/ForwardEdgeOperator.swift → ...ilder/Operators/ForwardEdgeOperator.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,4 +1,4 @@ | ||
import GraphViz | ||
import Core | ||
|
||
infix operator --> : AdditionPrecedence | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...er/Operators/UndirectedEdgeOperator.swift → ...er/Operators/UndirectedEdgeOperator.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,4 +1,4 @@ | ||
import GraphViz | ||
import Core | ||
|
||
infix operator --- : AdditionPrecedence | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ces/GraphVizBuilder/SubgraphBuilder.swift → Sources/Builder/SubgraphBuilder.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,4 +1,4 @@ | ||
import GraphViz | ||
import Core | ||
|
||
public protocol SubgraphMember {} | ||
|
||
|
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.
File renamed without changes.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@_exported import GraphViz | ||
import Core | ||
|
||
/// Creates DOT language representations of GraphViz graphs. | ||
/// | ||
|
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,4 @@ | ||
@_exported import Core | ||
@_exported import DOT | ||
@_exported import Builder | ||
@_exported import Tools |
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,5 +1,5 @@ | ||
import Foundation | ||
import GraphViz | ||
import Core | ||
|
||
extension Graph { | ||
/** | ||
|
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,5 +1,5 @@ | ||
import Foundation | ||
import GraphViz | ||
import Core | ||
import DOT | ||
import Clibgraphviz | ||
|
||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
import GraphViz | ||
import Core | ||
@testable import DOT | ||
|
||
final class EdgeTests: XCTestCase { | ||
|
4 changes: 2 additions & 2 deletions
4
...phVizBuilderTests/GraphBuilderTests.swift → Tests/GraphVizTests/GraphBuilderTests.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
import GraphViz | ||
import Core | ||
import DOT | ||
|
||
final class GraphTests: XCTestCase { | ||
|
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,5 +1,5 @@ | ||
import XCTest | ||
import GraphViz | ||
import Core | ||
@testable import DOT | ||
|
||
final class NodeTests: XCTestCase { | ||
|
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,5 +1,5 @@ | ||
import XCTest | ||
@testable import GraphViz | ||
@testable import Core | ||
@testable import DOT | ||
@testable import Tools | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
...izBuilderTests/SubgraphBuilderTests.swift → .../GraphVizTests/SubgraphBuilderTests.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
import GraphViz | ||
import Core | ||
@testable import DOT | ||
|
||
final class SubgraphTests: XCTestCase { | ||
|