├── .gitignore ├── Makefile ├── Quick_howto.md ├── readme.md ├── tca_howto.md └── templates ├── Spec File for TCA.xctemplate ├── TemplateIcon.png ├── TemplateIcon@2x.png ├── TemplateInfo.plist └── ___FILEBASENAME___Spec.swift ├── TCA Feature.xctemplate ├── TemplateIcon.png ├── TemplateIcon@2x.png ├── TemplateInfo.plist ├── ___FILEBASENAME___+Action.swift ├── ___FILEBASENAME___+State.swift ├── ___FILEBASENAME___.swift └── ___FILEBASENAME___View.swift └── TCA Service.xctemplate ├── TemplateIcon.png ├── TemplateIcon@2x.png ├── TemplateInfo.plist └── ___FILEBASENAME___Service.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/Makefile -------------------------------------------------------------------------------- /Quick_howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/Quick_howto.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/readme.md -------------------------------------------------------------------------------- /tca_howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/tca_howto.md -------------------------------------------------------------------------------- /templates/Spec File for TCA.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/Spec File for TCA.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /templates/Spec File for TCA.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/Spec File for TCA.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /templates/Spec File for TCA.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/Spec File for TCA.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/Spec File for TCA.xctemplate/___FILEBASENAME___Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/Spec File for TCA.xctemplate/___FILEBASENAME___Spec.swift -------------------------------------------------------------------------------- /templates/TCA Feature.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Feature.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /templates/TCA Feature.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Feature.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /templates/TCA Feature.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Feature.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/TCA Feature.xctemplate/___FILEBASENAME___+Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Feature.xctemplate/___FILEBASENAME___+Action.swift -------------------------------------------------------------------------------- /templates/TCA Feature.xctemplate/___FILEBASENAME___+State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Feature.xctemplate/___FILEBASENAME___+State.swift -------------------------------------------------------------------------------- /templates/TCA Feature.xctemplate/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Feature.xctemplate/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /templates/TCA Feature.xctemplate/___FILEBASENAME___View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Feature.xctemplate/___FILEBASENAME___View.swift -------------------------------------------------------------------------------- /templates/TCA Service.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Service.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /templates/TCA Service.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Service.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /templates/TCA Service.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Service.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /templates/TCA Service.xctemplate/___FILEBASENAME___Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riiid/xctemplate-for-tca/HEAD/templates/TCA Service.xctemplate/___FILEBASENAME___Service.swift --------------------------------------------------------------------------------