Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Version 1.1.0

Compare
Choose a tag to compare
@SvenTiigi SvenTiigi released this 30 Apr 07:37
· 190 commits to master since this release
3de1e79

CI-Service

This version will allow you to decide if you would like to use a CI-Service config template.
Currently Travis CI and GitLab CI are supported.

Arguments

SwiftKit now supports arguments when launched. Following arguments are supported:

Long parameter Short parameter Description
--destination -d Where the generated Kit should be saved πŸ’Ύ
--project -p The project name of your Kit 🐣
--name -n Your name πŸ‘¨β€πŸ’»
--email -e Your email address πŸ“«
--url -u The repository url 🌎
--ci-service -c The CI-Service πŸ›  (1=Travis CI, 2=GitLab CI)
--organization -o The name of your organization 🏒
--organization-identifier -i The organization identifier πŸ–‹
--force -f Generate the Kit without confirmation βœ…
--open -o Open the Xcode project after your Kit has been generated πŸ“‚

Example with all arguments set.

swiftkit new MyAwesomeKit \
		  	--project MyAwesomeKit \
			--name SvenTiigi \
			--email [email protected] \
			--url https://github.com/SvenTiigi/MyAwesomeKit \
			--ci-service 1 \
			--organization SvenTiigi \
			--organization-identifier de.tiigi \
			--force \
			--open