-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswift_viper_simple.rambaspec
39 lines (28 loc) · 1.33 KB
/
swift_viper_simple.rambaspec
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
# Template information section
name: "swift_viper_simple"
summary: "Swift module template with UIViewController playing as a View. Based on swifty_viper"
author: "Sergii Avilov"
version: "0.1.0"
license: "MIT"
# The declarations for code files
code_files:
# Factory
- {name: Factory.swift, path: Code/factory.swift.liquid}
# View layer
- {name: View/ViewInput.swift, path: Code/View/view_input.swift.liquid}
- {name: View/ViewOutput.swift, path: Code/View/view_output.swift.liquid}
- {name: View/ViewController.swift, path: Code/View/viewcontroller.swift.liquid}
# Presenter layer
- {name: Presenter/Presenter.swift, path: Code/Presenter/presenter.swift.liquid}
# Interactor layer
- {name: Interactor/InteractorInput.swift, path: Code/Interactor/interactor_input.swift.liquid}
- {name: Interactor/Interactor.swift, path: Code/Interactor/interactor.swift.liquid}
# Configurator
- {name: Configurator/Configurator.swift, path: Code/Configurator/configurator.swift.liquid}
- {name: Configurator/Initializer.swift, path: Code/Configurator/initializer.swift.liquid}
# The declarations for test files
test_files:
# Configurators tests
- {name: Configurator/ConfiguratorTests.swift, path: Tests/Configurator/configurator_tests.swift.liquid}
# Interactor tests
- {name: Interactor/InteractorTests.swift, path: Tests/Interactor/interactor_tests.swift.liquid}