├── .gitignore ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── SwiftTemplate │ ├── String+CapitalizedFirstCharacter.swift │ └── Template.swift └── SwiftTemplateCli │ ├── Commands │ ├── CreateCommand.swift │ ├── GenerateCommand.swift │ ├── InstallCommand.swift │ ├── ListCommand.swift │ ├── RemoveCommand.swift │ └── UpdateCommand.swift │ └── main.swift ├── Tests ├── SwiftTemplateTests │ └── SwiftTemplateTests.swift └── Templates │ └── 001 │ ├── .swift-template-ignore │ └── {name} │ └── {Name}.swift └── makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftTemplate/String+CapitalizedFirstCharacter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplate/String+CapitalizedFirstCharacter.swift -------------------------------------------------------------------------------- /Sources/SwiftTemplate/Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplate/Template.swift -------------------------------------------------------------------------------- /Sources/SwiftTemplateCli/Commands/CreateCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplateCli/Commands/CreateCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftTemplateCli/Commands/GenerateCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplateCli/Commands/GenerateCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftTemplateCli/Commands/InstallCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplateCli/Commands/InstallCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftTemplateCli/Commands/ListCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplateCli/Commands/ListCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftTemplateCli/Commands/RemoveCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplateCli/Commands/RemoveCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftTemplateCli/Commands/UpdateCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplateCli/Commands/UpdateCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftTemplateCli/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Sources/SwiftTemplateCli/main.swift -------------------------------------------------------------------------------- /Tests/SwiftTemplateTests/SwiftTemplateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Tests/SwiftTemplateTests/SwiftTemplateTests.swift -------------------------------------------------------------------------------- /Tests/Templates/001/.swift-template-ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Templates/001/{name}/{Name}.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/Tests/Templates/001/{name}/{Name}.swift -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-template/HEAD/makefile --------------------------------------------------------------------------------