├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .version ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── PackageBuilder │ ├── PackageBuilder.swift │ ├── PackageManifestBuilder.swift │ ├── Shell.swift │ ├── TemplateFilesManager.swift │ ├── Templates │ │ ├── dslOnlyPackageTemplate.swift │ │ ├── mainTemplate.swift │ │ └── packageTemplate.swift │ └── TemporalPathBuilder.swift ├── PodfileBuilder │ ├── PodfileBuilder.swift │ └── podfileTemplate.swift ├── Storage │ └── FileSystem.swift ├── SwiftyPods │ ├── Commands │ │ ├── CreateCommand.swift │ │ ├── EditCommand.swift │ │ └── GenerateCommand.swift │ ├── Services │ │ ├── CreateService.swift │ │ ├── EditService.swift │ │ └── GenerateService.swift │ ├── TemplateArgumentParser.swift │ ├── TemplateLocator.swift │ ├── emtyPodfileTemplate.swift │ └── main.swift └── TemplateRenderer │ └── TemplateRenderer.swift ├── Tests ├── LinuxMain.swift ├── PackageBuilderTests │ ├── PackageBuilderTests.swift │ ├── PackageManifestBuilderTests.swift │ ├── TemplateFilesManagerTests.swift │ └── XCTestManifests.swift ├── PodfileBuilderTests │ ├── PodfileBuilderTests.swift │ └── XCTestManifests.swift ├── SwiftyPodsTests │ ├── SwiftyPodsTests.swift │ └── XCTestManifests.swift └── TemplateRendererTests │ ├── TemplateRendererTests.swift │ └── XCTestManifests.swift └── testfolder └── podfile.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 0.2.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/README.md -------------------------------------------------------------------------------- /Sources/PackageBuilder/PackageBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PackageBuilder/PackageBuilder.swift -------------------------------------------------------------------------------- /Sources/PackageBuilder/PackageManifestBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PackageBuilder/PackageManifestBuilder.swift -------------------------------------------------------------------------------- /Sources/PackageBuilder/Shell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PackageBuilder/Shell.swift -------------------------------------------------------------------------------- /Sources/PackageBuilder/TemplateFilesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PackageBuilder/TemplateFilesManager.swift -------------------------------------------------------------------------------- /Sources/PackageBuilder/Templates/dslOnlyPackageTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PackageBuilder/Templates/dslOnlyPackageTemplate.swift -------------------------------------------------------------------------------- /Sources/PackageBuilder/Templates/mainTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PackageBuilder/Templates/mainTemplate.swift -------------------------------------------------------------------------------- /Sources/PackageBuilder/Templates/packageTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PackageBuilder/Templates/packageTemplate.swift -------------------------------------------------------------------------------- /Sources/PackageBuilder/TemporalPathBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PackageBuilder/TemporalPathBuilder.swift -------------------------------------------------------------------------------- /Sources/PodfileBuilder/PodfileBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PodfileBuilder/PodfileBuilder.swift -------------------------------------------------------------------------------- /Sources/PodfileBuilder/podfileTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/PodfileBuilder/podfileTemplate.swift -------------------------------------------------------------------------------- /Sources/Storage/FileSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/Storage/FileSystem.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/Commands/CreateCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/Commands/CreateCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/Commands/EditCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/Commands/EditCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/Commands/GenerateCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/Commands/GenerateCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/Services/CreateService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/Services/CreateService.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/Services/EditService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/Services/EditService.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/Services/GenerateService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/Services/GenerateService.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/TemplateArgumentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/TemplateArgumentParser.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/TemplateLocator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/TemplateLocator.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/emtyPodfileTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/emtyPodfileTemplate.swift -------------------------------------------------------------------------------- /Sources/SwiftyPods/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/SwiftyPods/main.swift -------------------------------------------------------------------------------- /Sources/TemplateRenderer/TemplateRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Sources/TemplateRenderer/TemplateRenderer.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/PackageBuilderTests/PackageBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/PackageBuilderTests/PackageBuilderTests.swift -------------------------------------------------------------------------------- /Tests/PackageBuilderTests/PackageManifestBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/PackageBuilderTests/PackageManifestBuilderTests.swift -------------------------------------------------------------------------------- /Tests/PackageBuilderTests/TemplateFilesManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/PackageBuilderTests/TemplateFilesManagerTests.swift -------------------------------------------------------------------------------- /Tests/PackageBuilderTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/PackageBuilderTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/PodfileBuilderTests/PodfileBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/PodfileBuilderTests/PodfileBuilderTests.swift -------------------------------------------------------------------------------- /Tests/PodfileBuilderTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/PodfileBuilderTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/SwiftyPodsTests/SwiftyPodsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/SwiftyPodsTests/SwiftyPodsTests.swift -------------------------------------------------------------------------------- /Tests/SwiftyPodsTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/SwiftyPodsTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/TemplateRendererTests/TemplateRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/TemplateRendererTests/TemplateRendererTests.swift -------------------------------------------------------------------------------- /Tests/TemplateRendererTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/Tests/TemplateRendererTests/XCTestManifests.swift -------------------------------------------------------------------------------- /testfolder/podfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitomule/SwiftyPods/HEAD/testfolder/podfile.swift --------------------------------------------------------------------------------