├── .gitignore ├── LICENSE ├── README.Ko.md ├── README.md ├── autoGenerator.sh ├── helperShells ├── applicationMaker.sh ├── dependencyDescriptionMaker.sh ├── frameworkMaker.sh └── projectDescriptionMaker.sh └── temp ├── Lint ├── swiftlint └── swiftlint.yml └── appIcon.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.Ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/README.Ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/README.md -------------------------------------------------------------------------------- /autoGenerator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/autoGenerator.sh -------------------------------------------------------------------------------- /helperShells/applicationMaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/helperShells/applicationMaker.sh -------------------------------------------------------------------------------- /helperShells/dependencyDescriptionMaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/helperShells/dependencyDescriptionMaker.sh -------------------------------------------------------------------------------- /helperShells/frameworkMaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/helperShells/frameworkMaker.sh -------------------------------------------------------------------------------- /helperShells/projectDescriptionMaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/helperShells/projectDescriptionMaker.sh -------------------------------------------------------------------------------- /temp/Lint/swiftlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/temp/Lint/swiftlint -------------------------------------------------------------------------------- /temp/Lint/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/temp/Lint/swiftlint.yml -------------------------------------------------------------------------------- /temp/appIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naldal/TuistAutoGen/HEAD/temp/appIcon.jpg --------------------------------------------------------------------------------