├── .gitignore ├── .swiftformat ├── .swiftlint.yml ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── xcgrapher.xcscheme ├── Makefile ├── Marketting └── xcgrapher.png ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── XCGrapherLib │ ├── DependencyManagers │ │ ├── CocoapodsManager.swift │ │ ├── DependencyManager.swift │ │ ├── NativeDependencyManager.swift │ │ ├── SwiftPackageManager.swift │ │ └── UnmanagedDependencyManager.swift │ ├── Digraph.swift │ ├── Extensions │ │ ├── Array.swift │ │ ├── FileManager.swift │ │ ├── Scanner.swift │ │ └── String.swift │ ├── Helpers │ │ ├── General.swift │ │ └── ShellTask.swift │ ├── ImportFinder.swift │ ├── Models │ │ └── PackageDescription.swift │ ├── PluginSupport │ │ ├── PluginLoader.swift │ │ └── PluginSupport.swift │ ├── ShellTasks │ │ ├── Graphviz.swift │ │ ├── SwiftBuild.swift │ │ ├── SwiftPackage.swift │ │ ├── SwiftPackageDependencySource.swift │ │ ├── Xcodebuild.swift │ │ └── Xcodeproj.swift │ ├── XCGrapher.swift │ └── XCGrapherOptions.swift ├── XCGrapherModuleImportPlugin │ ├── Extensions.swift │ ├── Models.swift │ └── Plugin.swift └── xcgrapher │ ├── XCGrapherArguments.swift │ └── main.swift └── Tests ├── SampleProjects ├── SomeApp │ ├── Podfile │ ├── Podfile.lock │ ├── SomeApp.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── SomeApp.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── SomeApp │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── FileNotInTargetMembership.swift │ │ ├── Imports │ │ ├── Apple │ │ │ ├── AVFoundationImports.swift │ │ │ ├── FoundationImportrs.swift │ │ │ └── UIKitImports.swift │ │ ├── Pods │ │ │ ├── Auth0Imports.swift │ │ │ ├── MoyaImports.swift │ │ │ └── RxImports.swift │ │ └── SPM │ │ │ ├── ChartsImports.swift │ │ │ ├── LottieImports.swift │ │ │ └── RealmImports.swift │ │ ├── Info.plist │ │ └── SceneDelegate.swift └── SomePackage │ ├── .gitignore │ ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── SomePackage │ │ ├── AppleImports.swift │ │ ├── DependencyImports.swift │ │ └── SomePackage.swift │ └── Tests │ ├── LinuxMain.swift │ └── SomePackageTests │ ├── SomePackageTests.swift │ └── XCTestManifests.swift └── XCGrapherLibTests ├── ArrayExtensionTests.swift ├── FileManagerExtensionTests.swift ├── Helpers.swift ├── ScannerTests.swift ├── ShellTaskTests.swift ├── StringExtensionTests.swift ├── XCGrapherTests+SPM.swift └── XCGrapherTests+Xcodeproject.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/xcgrapher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/xcgrapher.xcscheme -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Makefile -------------------------------------------------------------------------------- /Marketting/xcgrapher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Marketting/xcgrapher.png -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/README.md -------------------------------------------------------------------------------- /Sources/XCGrapherLib/DependencyManagers/CocoapodsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/DependencyManagers/CocoapodsManager.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/DependencyManagers/DependencyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/DependencyManagers/DependencyManager.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/DependencyManagers/NativeDependencyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/DependencyManagers/NativeDependencyManager.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/DependencyManagers/SwiftPackageManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/DependencyManagers/SwiftPackageManager.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/DependencyManagers/UnmanagedDependencyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/DependencyManagers/UnmanagedDependencyManager.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/Digraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/Digraph.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/Extensions/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/Extensions/Array.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/Extensions/FileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/Extensions/FileManager.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/Extensions/Scanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/Extensions/Scanner.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/Extensions/String.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/Helpers/General.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/Helpers/General.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/Helpers/ShellTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/Helpers/ShellTask.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/ImportFinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/ImportFinder.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/Models/PackageDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/Models/PackageDescription.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/PluginSupport/PluginLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/PluginSupport/PluginLoader.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/PluginSupport/PluginSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/PluginSupport/PluginSupport.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/ShellTasks/Graphviz.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/ShellTasks/Graphviz.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/ShellTasks/SwiftBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/ShellTasks/SwiftBuild.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/ShellTasks/SwiftPackage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/ShellTasks/SwiftPackage.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/ShellTasks/SwiftPackageDependencySource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/ShellTasks/SwiftPackageDependencySource.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/ShellTasks/Xcodebuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/ShellTasks/Xcodebuild.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/ShellTasks/Xcodeproj.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/ShellTasks/Xcodeproj.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/XCGrapher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/XCGrapher.swift -------------------------------------------------------------------------------- /Sources/XCGrapherLib/XCGrapherOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherLib/XCGrapherOptions.swift -------------------------------------------------------------------------------- /Sources/XCGrapherModuleImportPlugin/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherModuleImportPlugin/Extensions.swift -------------------------------------------------------------------------------- /Sources/XCGrapherModuleImportPlugin/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherModuleImportPlugin/Models.swift -------------------------------------------------------------------------------- /Sources/XCGrapherModuleImportPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/XCGrapherModuleImportPlugin/Plugin.swift -------------------------------------------------------------------------------- /Sources/xcgrapher/XCGrapherArguments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/xcgrapher/XCGrapherArguments.swift -------------------------------------------------------------------------------- /Sources/xcgrapher/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Sources/xcgrapher/main.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/Podfile -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/Podfile.lock -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/AppDelegate.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/FileNotInTargetMembership.swift: -------------------------------------------------------------------------------- 1 | import CoreGraphics 2 | -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/Apple/AVFoundationImports.swift: -------------------------------------------------------------------------------- 1 | import class AVFoundation.AVAsset 2 | -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/Apple/FoundationImportrs.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/Apple/UIKitImports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Imports/Apple/UIKitImports.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/Pods/Auth0Imports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Imports/Pods/Auth0Imports.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/Pods/MoyaImports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Imports/Pods/MoyaImports.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/Pods/RxImports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Imports/Pods/RxImports.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/SPM/ChartsImports.swift: -------------------------------------------------------------------------------- 1 | import Charts 2 | -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/SPM/LottieImports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Imports/SPM/LottieImports.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Imports/SPM/RealmImports.swift: -------------------------------------------------------------------------------- 1 | import RealmSwift 2 | -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/Info.plist -------------------------------------------------------------------------------- /Tests/SampleProjects/SomeApp/SomeApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomeApp/SomeApp/SceneDelegate.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/Package.resolved -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/Package.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/README.md -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/Sources/SomePackage/AppleImports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/Sources/SomePackage/AppleImports.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/Sources/SomePackage/DependencyImports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/Sources/SomePackage/DependencyImports.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/Sources/SomePackage/SomePackage.swift: -------------------------------------------------------------------------------- 1 | struct SomePackage { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/Tests/SomePackageTests/SomePackageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/Tests/SomePackageTests/SomePackageTests.swift -------------------------------------------------------------------------------- /Tests/SampleProjects/SomePackage/Tests/SomePackageTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/SampleProjects/SomePackage/Tests/SomePackageTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/XCGrapherLibTests/ArrayExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/XCGrapherLibTests/ArrayExtensionTests.swift -------------------------------------------------------------------------------- /Tests/XCGrapherLibTests/FileManagerExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/XCGrapherLibTests/FileManagerExtensionTests.swift -------------------------------------------------------------------------------- /Tests/XCGrapherLibTests/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/XCGrapherLibTests/Helpers.swift -------------------------------------------------------------------------------- /Tests/XCGrapherLibTests/ScannerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/XCGrapherLibTests/ScannerTests.swift -------------------------------------------------------------------------------- /Tests/XCGrapherLibTests/ShellTaskTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/XCGrapherLibTests/ShellTaskTests.swift -------------------------------------------------------------------------------- /Tests/XCGrapherLibTests/StringExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/XCGrapherLibTests/StringExtensionTests.swift -------------------------------------------------------------------------------- /Tests/XCGrapherLibTests/XCGrapherTests+SPM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/XCGrapherLibTests/XCGrapherTests+SPM.swift -------------------------------------------------------------------------------- /Tests/XCGrapherLibTests/XCGrapherTests+Xcodeproject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxchuquimia/xcgrapher/HEAD/Tests/XCGrapherLibTests/XCGrapherTests+Xcodeproject.swift --------------------------------------------------------------------------------