forked from 0x0c/GenesisCollectionComposerTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yml
43 lines (43 loc) · 2.24 KB
/
template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
options:
- name: developer_name
description: Your name.
question: Please input your name.
- name: project_name
description: Project name.
question: Please input your project's name.
- name: module_name
description: Module name
question: Please input the module name.
- name: has_repository
description: Whether the module has a repository or not.
question: The module communiates any API servers to get contents? [y/n]
type: boolean
- name: output_path
description: Output path
question: Please input the path for output files.
- name: test_output_path
description: Test output path
question: Please input the path for output tests codes. Input empty to skip code generation.
files:
- template: Templates/Code/View/ViewController.swift.stencil
path: "{{ output_path }}/{{ module_name }}/View/{{ module_name }}ViewController.swift"
- template: Templates/Code/Interactor/Interactor.swift.stencil
path: "{{ output_path }}/{{ module_name }}/Interactor/{{ module_name }}Interactor.swift"
- template: Templates/Code/Presenter/Presenter.swift.stencil
path: "{{ output_path }}/{{ module_name }}/Presenter/{{ module_name }}Presenter.swift"
- template: Templates/Code/Router/Router.swift.stencil
path: "{{ output_path }}/{{ module_name }}/Router/{{ module_name }}Router.swift"
- template: Templates/Code/Repository/Repository.swift.stencil
path: "{{ output_path }}/{{ module_name }}/Repository/{{ module_name }}Repository.swift"
- template: Templates/Test/View/ViewTest.swift.stencil
path: "{{ test_output_path }}/{{ module_name }}/View/{{ module_name }}ViewTest.swift"
include: test_output_path != ''
- template: Templates/Test/Interactor/InteractorTest.swift.stencil
path: "{{ test_output_path }}/{{ module_name }}/Interactor/{{ module_name }}InteractorTest.swift"
include: test_output_path != ''
- template: Templates/Test/Presenter/PresenterTest.swift.stencil
path: "{{ test_output_path }}/{{ module_name }}/Presenter/{{ module_name }}PresenterTest.swift"
include: test_output_path != ''
- template: Templates/Test/Router/RouterTest.swift.stencil
path: "{{ test_output_path }}/{{ module_name }}/Router/{{ module_name }}RouterTest.swift"
include: test_output_path != ''