├── .gitignore ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── Git │ └── Git.swift ├── Lowmad │ └── main.swift ├── LowmadCLI │ ├── Commands │ │ ├── DumpCommand.swift │ │ ├── GenerateCommand.swift │ │ ├── InitCommand.swift │ │ ├── InstallCommand.swift │ │ ├── ListCommand.swift │ │ ├── LowmadCommand.swift │ │ ├── SyncCommand.swift │ │ └── UninstallCommand.swift │ └── LowmadCLI.swift ├── LowmadKit │ ├── Command.swift │ ├── Environment.swift │ ├── Extensions.swift │ ├── Helpers.swift │ ├── Lowmad.swift │ └── Manifest.swift ├── Shell │ └── Shell.swift └── World │ └── World.swift ├── Tests ├── LinuxMain.swift └── LowmadTests │ ├── LowmadTests.swift │ └── XCTestManifests.swift ├── logo_transparent.png └── lowmad.xcodeproj ├── Files_Info.plist ├── Git_Info.plist ├── LowmadCLI_Info.plist ├── LowmadKit_Info.plist ├── Rainbow_Info.plist ├── Shell_Info.plist ├── SwiftCLI_Info.plist ├── World_Info.plist ├── lowmadTests_Info.plist ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xcshareddata └── xcschemes ├── lowmad-Package.xcscheme └── lowmad.xcscheme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Git/Git.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/Git/Git.swift -------------------------------------------------------------------------------- /Sources/Lowmad/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/Lowmad/main.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/Commands/DumpCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/Commands/DumpCommand.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/Commands/GenerateCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/Commands/GenerateCommand.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/Commands/InitCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/Commands/InitCommand.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/Commands/InstallCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/Commands/InstallCommand.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/Commands/ListCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/Commands/ListCommand.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/Commands/LowmadCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/Commands/LowmadCommand.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/Commands/SyncCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/Commands/SyncCommand.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/Commands/UninstallCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/Commands/UninstallCommand.swift -------------------------------------------------------------------------------- /Sources/LowmadCLI/LowmadCLI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadCLI/LowmadCLI.swift -------------------------------------------------------------------------------- /Sources/LowmadKit/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadKit/Command.swift -------------------------------------------------------------------------------- /Sources/LowmadKit/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadKit/Environment.swift -------------------------------------------------------------------------------- /Sources/LowmadKit/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadKit/Extensions.swift -------------------------------------------------------------------------------- /Sources/LowmadKit/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadKit/Helpers.swift -------------------------------------------------------------------------------- /Sources/LowmadKit/Lowmad.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadKit/Lowmad.swift -------------------------------------------------------------------------------- /Sources/LowmadKit/Manifest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/LowmadKit/Manifest.swift -------------------------------------------------------------------------------- /Sources/Shell/Shell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/Shell/Shell.swift -------------------------------------------------------------------------------- /Sources/World/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Sources/World/World.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/LowmadTests/LowmadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Tests/LowmadTests/LowmadTests.swift -------------------------------------------------------------------------------- /Tests/LowmadTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/Tests/LowmadTests/XCTestManifests.swift -------------------------------------------------------------------------------- /logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/logo_transparent.png -------------------------------------------------------------------------------- /lowmad.xcodeproj/Files_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/Files_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/Git_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/Git_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/LowmadCLI_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/LowmadCLI_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/LowmadKit_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/LowmadKit_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/Rainbow_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/Rainbow_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/Shell_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/Shell_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/SwiftCLI_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/SwiftCLI_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/World_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/World_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/lowmadTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/lowmadTests_Info.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lowmad.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /lowmad.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /lowmad.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /lowmad.xcodeproj/xcshareddata/xcschemes/lowmad-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/xcshareddata/xcschemes/lowmad-Package.xcscheme -------------------------------------------------------------------------------- /lowmad.xcodeproj/xcshareddata/xcschemes/lowmad.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bangerang/lowmad/HEAD/lowmad.xcodeproj/xcshareddata/xcschemes/lowmad.xcscheme --------------------------------------------------------------------------------