├── .gitattributes ├── .github ├── Logo.png ├── carting.png ├── error.png ├── phase.png └── workflows │ ├── build.yml │ └── master.yml ├── .gitignore ├── .swiftlint.yml ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md └── Sources ├── Carting ├── Commands │ ├── Carting.swift │ ├── Format+ExpressibleByArgument.swift │ ├── Info.swift │ ├── Lint.swift │ ├── Options.swift │ └── Update.swift └── main.swift └── CartingCore ├── Extensions ├── Array+Map.swift ├── PBXNativeTarget+Frameworks.swift ├── PBXShellScriptBuildPhase+Paths.swift ├── StringExtensions.swift └── XcodeProj+Targets.swift └── Services ├── Format.swift ├── Framework.swift ├── PathType.swift └── ProjectService.swift /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/.github/Logo.png -------------------------------------------------------------------------------- /.github/carting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/.github/carting.png -------------------------------------------------------------------------------- /.github/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/.github/error.png -------------------------------------------------------------------------------- /.github/phase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/.github/phase.png -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Carting/Commands/Carting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/Carting/Commands/Carting.swift -------------------------------------------------------------------------------- /Sources/Carting/Commands/Format+ExpressibleByArgument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/Carting/Commands/Format+ExpressibleByArgument.swift -------------------------------------------------------------------------------- /Sources/Carting/Commands/Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/Carting/Commands/Info.swift -------------------------------------------------------------------------------- /Sources/Carting/Commands/Lint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/Carting/Commands/Lint.swift -------------------------------------------------------------------------------- /Sources/Carting/Commands/Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/Carting/Commands/Options.swift -------------------------------------------------------------------------------- /Sources/Carting/Commands/Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/Carting/Commands/Update.swift -------------------------------------------------------------------------------- /Sources/Carting/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/Carting/main.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Extensions/Array+Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Extensions/Array+Map.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Extensions/PBXNativeTarget+Frameworks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Extensions/PBXNativeTarget+Frameworks.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Extensions/PBXShellScriptBuildPhase+Paths.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Extensions/PBXShellScriptBuildPhase+Paths.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Extensions/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Extensions/StringExtensions.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Extensions/XcodeProj+Targets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Extensions/XcodeProj+Targets.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Services/Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Services/Format.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Services/Framework.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Services/Framework.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Services/PathType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Services/PathType.swift -------------------------------------------------------------------------------- /Sources/CartingCore/Services/ProjectService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/Carting/HEAD/Sources/CartingCore/Services/ProjectService.swift --------------------------------------------------------------------------------