├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── gckit.js ├── docs ├── .vuepress │ ├── config.js │ ├── override.styl │ └── public │ │ ├── favicon.png │ │ ├── hero.png │ │ ├── icons │ │ ├── basic-config-001.gif │ │ ├── cocoapods-001.gif │ │ ├── favicon.ico │ │ ├── gckit-process.png │ │ ├── generate-001.png │ │ ├── gtype-config-001.gif │ │ ├── gtype-config-002.png │ │ ├── guide-getting-started-001.png │ │ ├── guide-getting-started-002.png │ │ ├── lang-config-001.gif │ │ └── lang-config-002.png │ │ └── manifest.json ├── README.md ├── about │ └── README.md ├── config │ └── README.md ├── guide │ ├── README.md │ ├── advanced │ │ ├── cocoapods.md │ │ ├── gtype-config.md │ │ └── lang-config.md │ ├── basic-config.md │ ├── generate.md │ └── getting-started.md ├── img │ └── logo.png └── template │ └── README.md ├── gckit-templates ├── config │ └── .gckitconfig ├── templates │ ├── dart │ │ └── model │ │ │ ├── all.attr.key.template │ │ │ ├── all.attr.template │ │ │ ├── all.dict.template │ │ │ ├── all.init.template │ │ │ ├── all.template │ │ │ ├── common.attr.key.template │ │ │ ├── common.attr.template │ │ │ ├── common.dict.template │ │ │ ├── common.init.template │ │ │ ├── common.template │ │ │ ├── inherit.attr.key.template │ │ │ ├── inherit.attr.template │ │ │ ├── inherit.dict.template │ │ │ ├── inherit.init.template │ │ │ ├── inherit.template │ │ │ ├── normal.attr.key.template │ │ │ ├── normal.attr.template │ │ │ ├── normal.dict.template │ │ │ ├── normal.init.template │ │ │ └── normal.template │ ├── objc │ │ ├── cell │ │ │ ├── all.h.template │ │ │ ├── all.m.template │ │ │ ├── common.h.template │ │ │ ├── common.m.template │ │ │ ├── inherit.h.template │ │ │ ├── inherit.m.template │ │ │ ├── normal.h.template │ │ │ └── normal.m.template │ │ ├── model │ │ │ ├── all.attr.key.template │ │ │ ├── all.attr.template │ │ │ ├── all.dict.template │ │ │ ├── all.h.template │ │ │ ├── all.init.template │ │ │ ├── all.m.template │ │ │ ├── common.attr.key.template │ │ │ ├── common.attr.template │ │ │ ├── common.dict.template │ │ │ ├── common.h.template │ │ │ ├── common.init.template │ │ │ ├── common.m.template │ │ │ ├── inherit.attr.key.template │ │ │ ├── inherit.attr.template │ │ │ ├── inherit.dict.template │ │ │ ├── inherit.h.template │ │ │ ├── inherit.init.template │ │ │ ├── inherit.m.template │ │ │ ├── normal.attr.key.template │ │ │ ├── normal.attr.template │ │ │ ├── normal.dict.template │ │ │ ├── normal.h.template │ │ │ ├── normal.init.template │ │ │ └── normal.m.template │ │ └── viewcontroller │ │ │ ├── all.h.template │ │ │ ├── all.m.template │ │ │ ├── common.h.template │ │ │ ├── common.m.template │ │ │ ├── inherit.h.template │ │ │ ├── inherit.m.template │ │ │ ├── normal.h.template │ │ │ └── normal.m.template │ └── swift │ │ ├── api │ │ ├── all.template │ │ ├── common.template │ │ ├── inherit.template │ │ └── normal.template │ │ ├── cell │ │ ├── all.template │ │ ├── common.template │ │ ├── inherit.template │ │ └── normal.template │ │ ├── core │ │ ├── all.template │ │ ├── common.template │ │ ├── inherit.template │ │ └── normal.template │ │ ├── model │ │ ├── all.attr.key.template │ │ ├── all.attr.template │ │ ├── all.dict.template │ │ ├── all.init.template │ │ ├── all.template │ │ ├── common.attr.key.template │ │ ├── common.attr.template │ │ ├── common.dict.template │ │ ├── common.init.template │ │ ├── common.template │ │ ├── inherit.attr.key.template │ │ ├── inherit.attr.template │ │ ├── inherit.dict.template │ │ ├── inherit.init.template │ │ ├── inherit.template │ │ ├── normal.attr.key.template │ │ ├── normal.attr.template │ │ ├── normal.dict.template │ │ ├── normal.init.template │ │ └── normal.template │ │ ├── router │ │ ├── all.registervc.template │ │ ├── all.template │ │ ├── common.registervc.template │ │ ├── common.template │ │ ├── inherit.registervc.template │ │ ├── inherit.template │ │ ├── normal.registervc.template │ │ └── normal.template │ │ ├── viewcontroller │ │ ├── all.template │ │ ├── common.template │ │ ├── inherit.template │ │ └── normal.template │ │ └── viewmodel │ │ ├── all.template │ │ ├── common.template │ │ ├── inherit.template │ │ └── normal.template └── xcodebuild │ └── linkmap.xcconfig ├── gckit ├── 404.html ├── about │ └── index.html ├── assets │ ├── css │ │ └── 0.styles.782bbe82.css │ ├── img │ │ └── search.83621669.svg │ └── js │ │ ├── 10.82dbe597.js │ │ ├── 11.022297eb.js │ │ ├── 12.41d70fdd.js │ │ ├── 13.23dc5993.js │ │ ├── 14.b6a780c4.js │ │ ├── 2.4c7d351d.js │ │ ├── 3.fb030b46.js │ │ ├── 4.3369d02e.js │ │ ├── 5.705a88f4.js │ │ ├── 6.25ea6206.js │ │ ├── 7.50c22630.js │ │ ├── 8.a3da28c3.js │ │ ├── 9.f5d7515f.js │ │ └── app.9f22f953.js ├── config │ └── index.html ├── favicon.png ├── guide │ ├── advanced │ │ ├── cocoapods.html │ │ ├── gtype-config.html │ │ └── lang-config.html │ ├── basic-config.html │ ├── generate.html │ ├── getting-started.html │ └── index.html ├── hero.png ├── icons │ ├── basic-config-001.gif │ ├── cocoapods-001.gif │ ├── favicon.ico │ ├── gckit-process.png │ ├── generate-001.png │ ├── gtype-config-001.gif │ ├── gtype-config-002.png │ ├── guide-getting-started-001.png │ ├── guide-getting-started-002.png │ ├── lang-config-001.gif │ └── lang-config-002.png ├── index.html ├── manifest.json ├── service-worker.js └── template │ └── index.html ├── package.json └── packages ├── lib ├── cli-ipa.js ├── cli-linkmap.js ├── cli-lipo.js ├── config.js ├── core-generators │ ├── create-cell.js │ ├── create-model.js │ ├── create-router.js │ ├── create-viewcontroller.js │ └── create.js ├── core-shell │ ├── base-shell.js │ ├── ipa-shell.js │ ├── linkmap-shell.js │ └── lipo-shell.js ├── generate.js ├── helpers │ ├── create-file.js │ ├── mobileprovision-parse.js │ └── xcode-project.js └── utils │ ├── datalist.js │ ├── lang-data.js │ ├── load-gckit.js │ └── prompts.js └── shared-utils ├── index.js └── lib ├── db.js ├── env.js ├── linkmap.js ├── logger.js ├── shell.js ├── spinner.js ├── string.js └── to.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/README.md -------------------------------------------------------------------------------- /bin/gckit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/bin/gckit.js -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/override.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/override.styl -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/favicon.png -------------------------------------------------------------------------------- /docs/.vuepress/public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/hero.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/basic-config-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/basic-config-001.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/cocoapods-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/cocoapods-001.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/favicon.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/gckit-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/gckit-process.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/generate-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/generate-001.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/gtype-config-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/gtype-config-001.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/gtype-config-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/gtype-config-002.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/guide-getting-started-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/guide-getting-started-001.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/guide-getting-started-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/guide-getting-started-002.png -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/lang-config-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/lang-config-001.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/icons/lang-config-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/icons/lang-config-002.png -------------------------------------------------------------------------------- /docs/.vuepress/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/.vuepress/public/manifest.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/about/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/about/README.md -------------------------------------------------------------------------------- /docs/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/config/README.md -------------------------------------------------------------------------------- /docs/guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/guide/README.md -------------------------------------------------------------------------------- /docs/guide/advanced/cocoapods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/guide/advanced/cocoapods.md -------------------------------------------------------------------------------- /docs/guide/advanced/gtype-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/guide/advanced/gtype-config.md -------------------------------------------------------------------------------- /docs/guide/advanced/lang-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/guide/advanced/lang-config.md -------------------------------------------------------------------------------- /docs/guide/basic-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/guide/basic-config.md -------------------------------------------------------------------------------- /docs/guide/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/guide/generate.md -------------------------------------------------------------------------------- /docs/guide/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/guide/getting-started.md -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/docs/template/README.md -------------------------------------------------------------------------------- /gckit-templates/config/.gckitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/config/.gckitconfig -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/all.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/all.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/all.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/all.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/all.dict.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/all.dict.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/all.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/all.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/all.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/common.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/common.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/common.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/common.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/common.dict.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/common.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/common.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/common.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/common.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/inherit.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/inherit.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/inherit.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/inherit.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/inherit.dict.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/inherit.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/inherit.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/inherit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/inherit.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/normal.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/normal.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/normal.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/normal.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/normal.dict.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/normal.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/normal.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/dart/model/normal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/dart/model/normal.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/cell/all.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/cell/all.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/cell/all.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/cell/all.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/cell/common.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/cell/common.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/cell/common.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/cell/common.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/cell/inherit.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/cell/inherit.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/cell/inherit.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/cell/inherit.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/cell/normal.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/cell/normal.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/cell/normal.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/cell/normal.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/all.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/all.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/all.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/all.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/all.dict.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/all.dict.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/all.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/all.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/all.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/all.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/all.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/all.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/common.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/common.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/common.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/common.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/common.dict.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/common.dict.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/common.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/common.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/common.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/common.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/common.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/common.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/inherit.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/inherit.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/inherit.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/inherit.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/inherit.dict.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/inherit.dict.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/inherit.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/inherit.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/inherit.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/inherit.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/inherit.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/inherit.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/normal.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/normal.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/normal.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/normal.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/normal.dict.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/normal.dict.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/normal.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/normal.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/normal.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/normal.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/model/normal.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/model/normal.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/viewcontroller/all.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/viewcontroller/all.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/viewcontroller/all.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/viewcontroller/all.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/viewcontroller/common.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/viewcontroller/common.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/viewcontroller/common.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/viewcontroller/common.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/viewcontroller/inherit.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/viewcontroller/inherit.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/viewcontroller/inherit.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/viewcontroller/inherit.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/viewcontroller/normal.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/viewcontroller/normal.h.template -------------------------------------------------------------------------------- /gckit-templates/templates/objc/viewcontroller/normal.m.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/objc/viewcontroller/normal.m.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/api/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/api/all.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/api/common.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/api/common.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/api/inherit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/api/inherit.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/api/normal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/api/normal.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/cell/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/cell/all.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/cell/common.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/cell/common.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/cell/inherit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/cell/inherit.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/cell/normal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/cell/normal.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/core/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/core/all.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/core/common.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/core/common.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/core/inherit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/core/inherit.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/core/normal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/core/normal.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/all.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/all.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/all.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/all.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/all.dict.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/all.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/all.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/all.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/common.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/common.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/common.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/common.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/common.dict.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/common.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/common.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/common.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/common.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/inherit.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/inherit.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/inherit.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/inherit.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/inherit.dict.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/inherit.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/inherit.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/inherit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/inherit.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/normal.attr.key.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/normal.attr.key.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/normal.attr.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/normal.attr.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/normal.dict.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/normal.init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/normal.init.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/model/normal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/model/normal.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/router/all.registervc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/router/all.registervc.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/router/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/router/all.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/router/common.registervc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/router/common.registervc.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/router/common.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/router/common.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/router/inherit.registervc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/router/inherit.registervc.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/router/inherit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/router/inherit.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/router/normal.registervc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/router/normal.registervc.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/router/normal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/router/normal.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/viewcontroller/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/viewcontroller/all.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/viewcontroller/common.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/viewcontroller/common.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/viewcontroller/inherit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/viewcontroller/inherit.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/viewcontroller/normal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/viewcontroller/normal.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/viewmodel/all.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/viewmodel/all.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/viewmodel/common.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/viewmodel/common.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/viewmodel/inherit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/viewmodel/inherit.template -------------------------------------------------------------------------------- /gckit-templates/templates/swift/viewmodel/normal.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit-templates/templates/swift/viewmodel/normal.template -------------------------------------------------------------------------------- /gckit-templates/xcodebuild/linkmap.xcconfig: -------------------------------------------------------------------------------- 1 | LD_GENERATE_MAP_FILE = YES 2 | -------------------------------------------------------------------------------- /gckit/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/404.html -------------------------------------------------------------------------------- /gckit/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/about/index.html -------------------------------------------------------------------------------- /gckit/assets/css/0.styles.782bbe82.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/css/0.styles.782bbe82.css -------------------------------------------------------------------------------- /gckit/assets/img/search.83621669.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/img/search.83621669.svg -------------------------------------------------------------------------------- /gckit/assets/js/10.82dbe597.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/10.82dbe597.js -------------------------------------------------------------------------------- /gckit/assets/js/11.022297eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/11.022297eb.js -------------------------------------------------------------------------------- /gckit/assets/js/12.41d70fdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/12.41d70fdd.js -------------------------------------------------------------------------------- /gckit/assets/js/13.23dc5993.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/13.23dc5993.js -------------------------------------------------------------------------------- /gckit/assets/js/14.b6a780c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/14.b6a780c4.js -------------------------------------------------------------------------------- /gckit/assets/js/2.4c7d351d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/2.4c7d351d.js -------------------------------------------------------------------------------- /gckit/assets/js/3.fb030b46.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/3.fb030b46.js -------------------------------------------------------------------------------- /gckit/assets/js/4.3369d02e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/4.3369d02e.js -------------------------------------------------------------------------------- /gckit/assets/js/5.705a88f4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/5.705a88f4.js -------------------------------------------------------------------------------- /gckit/assets/js/6.25ea6206.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/6.25ea6206.js -------------------------------------------------------------------------------- /gckit/assets/js/7.50c22630.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/7.50c22630.js -------------------------------------------------------------------------------- /gckit/assets/js/8.a3da28c3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/8.a3da28c3.js -------------------------------------------------------------------------------- /gckit/assets/js/9.f5d7515f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/9.f5d7515f.js -------------------------------------------------------------------------------- /gckit/assets/js/app.9f22f953.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/assets/js/app.9f22f953.js -------------------------------------------------------------------------------- /gckit/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/config/index.html -------------------------------------------------------------------------------- /gckit/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/favicon.png -------------------------------------------------------------------------------- /gckit/guide/advanced/cocoapods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/guide/advanced/cocoapods.html -------------------------------------------------------------------------------- /gckit/guide/advanced/gtype-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/guide/advanced/gtype-config.html -------------------------------------------------------------------------------- /gckit/guide/advanced/lang-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/guide/advanced/lang-config.html -------------------------------------------------------------------------------- /gckit/guide/basic-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/guide/basic-config.html -------------------------------------------------------------------------------- /gckit/guide/generate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/guide/generate.html -------------------------------------------------------------------------------- /gckit/guide/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/guide/getting-started.html -------------------------------------------------------------------------------- /gckit/guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/guide/index.html -------------------------------------------------------------------------------- /gckit/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/hero.png -------------------------------------------------------------------------------- /gckit/icons/basic-config-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/basic-config-001.gif -------------------------------------------------------------------------------- /gckit/icons/cocoapods-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/cocoapods-001.gif -------------------------------------------------------------------------------- /gckit/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/favicon.ico -------------------------------------------------------------------------------- /gckit/icons/gckit-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/gckit-process.png -------------------------------------------------------------------------------- /gckit/icons/generate-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/generate-001.png -------------------------------------------------------------------------------- /gckit/icons/gtype-config-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/gtype-config-001.gif -------------------------------------------------------------------------------- /gckit/icons/gtype-config-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/gtype-config-002.png -------------------------------------------------------------------------------- /gckit/icons/guide-getting-started-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/guide-getting-started-001.png -------------------------------------------------------------------------------- /gckit/icons/guide-getting-started-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/guide-getting-started-002.png -------------------------------------------------------------------------------- /gckit/icons/lang-config-001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/lang-config-001.gif -------------------------------------------------------------------------------- /gckit/icons/lang-config-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/icons/lang-config-002.png -------------------------------------------------------------------------------- /gckit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/index.html -------------------------------------------------------------------------------- /gckit/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/manifest.json -------------------------------------------------------------------------------- /gckit/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/service-worker.js -------------------------------------------------------------------------------- /gckit/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/gckit/template/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/package.json -------------------------------------------------------------------------------- /packages/lib/cli-ipa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/cli-ipa.js -------------------------------------------------------------------------------- /packages/lib/cli-linkmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/cli-linkmap.js -------------------------------------------------------------------------------- /packages/lib/cli-lipo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/cli-lipo.js -------------------------------------------------------------------------------- /packages/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/config.js -------------------------------------------------------------------------------- /packages/lib/core-generators/create-cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-generators/create-cell.js -------------------------------------------------------------------------------- /packages/lib/core-generators/create-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-generators/create-model.js -------------------------------------------------------------------------------- /packages/lib/core-generators/create-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-generators/create-router.js -------------------------------------------------------------------------------- /packages/lib/core-generators/create-viewcontroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-generators/create-viewcontroller.js -------------------------------------------------------------------------------- /packages/lib/core-generators/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-generators/create.js -------------------------------------------------------------------------------- /packages/lib/core-shell/base-shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-shell/base-shell.js -------------------------------------------------------------------------------- /packages/lib/core-shell/ipa-shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-shell/ipa-shell.js -------------------------------------------------------------------------------- /packages/lib/core-shell/linkmap-shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-shell/linkmap-shell.js -------------------------------------------------------------------------------- /packages/lib/core-shell/lipo-shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/core-shell/lipo-shell.js -------------------------------------------------------------------------------- /packages/lib/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/generate.js -------------------------------------------------------------------------------- /packages/lib/helpers/create-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/helpers/create-file.js -------------------------------------------------------------------------------- /packages/lib/helpers/mobileprovision-parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/helpers/mobileprovision-parse.js -------------------------------------------------------------------------------- /packages/lib/helpers/xcode-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/helpers/xcode-project.js -------------------------------------------------------------------------------- /packages/lib/utils/datalist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/utils/datalist.js -------------------------------------------------------------------------------- /packages/lib/utils/lang-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/utils/lang-data.js -------------------------------------------------------------------------------- /packages/lib/utils/load-gckit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/utils/load-gckit.js -------------------------------------------------------------------------------- /packages/lib/utils/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/lib/utils/prompts.js -------------------------------------------------------------------------------- /packages/shared-utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/index.js -------------------------------------------------------------------------------- /packages/shared-utils/lib/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/lib/db.js -------------------------------------------------------------------------------- /packages/shared-utils/lib/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/lib/env.js -------------------------------------------------------------------------------- /packages/shared-utils/lib/linkmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/lib/linkmap.js -------------------------------------------------------------------------------- /packages/shared-utils/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/lib/logger.js -------------------------------------------------------------------------------- /packages/shared-utils/lib/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/lib/shell.js -------------------------------------------------------------------------------- /packages/shared-utils/lib/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/lib/spinner.js -------------------------------------------------------------------------------- /packages/shared-utils/lib/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/lib/string.js -------------------------------------------------------------------------------- /packages/shared-utils/lib/to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeongBrave/gckit/HEAD/packages/shared-utils/lib/to.js --------------------------------------------------------------------------------