ccios 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/Rakefile +8 -0
- data/ccios.gemspec +1 -1
- data/lib/ccios/code_templater.rb +1 -0
- data/lib/ccios/templates/coordinator.mustache +2 -2
- data/lib/ccios/templates/interactor_assembly.mustache +1 -1
- data/lib/ccios/templates/interactor_implementation.mustache +1 -1
- data/lib/ccios/templates/presenter.mustache +1 -1
- data/lib/ccios/templates/presenter_implementation.mustache +1 -1
- data/lib/ccios/templates/repository_assembly.mustache +1 -1
- data/lib/ccios/templates/repository_implementation.mustache +1 -1
- data/lib/ccios/templates/view_contract.mustache +1 -1
- data/lib/ccios/templates/view_controller.mustache +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbdbfc24427136819707fbc0250ceac8dc0cc508
|
4
|
+
data.tar.gz: 9c1fca09c4477192fdeaa6495705a8384f249d74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07f8941880e9f7b71f2af9329d385f1db093a3bb51b735548ef31cea276ed2b58b8d0b3ed68e30cb639929cb8938c3283d172b20f6eaafe2ff089379e62e6c84
|
7
|
+
data.tar.gz: a454f4d518afc4bcfe278300fc0e7338fc6ec4c46e58bb847213a78e7fa97008a2d3e216a5f0f03a51f54231f7ac3bd9129ea0d104358f9c0fbf37d649398797
|
data/README.md
CHANGED
@@ -2,13 +2,20 @@
|
|
2
2
|
Xcode File Generator for Clean Code architecture
|
3
3
|
|
4
4
|
# How to install
|
5
|
+
```
|
6
|
+
gem install ccios
|
7
|
+
```
|
5
8
|
|
9
|
+
To build it from source:
|
6
10
|
```
|
7
11
|
cd ccios
|
8
12
|
gem build ccios.gemspec
|
9
13
|
gem install ./ccios-x.x.x.gem
|
10
14
|
```
|
11
15
|
|
16
|
+
To run the tests run:
|
17
|
+
```rake test```
|
18
|
+
|
12
19
|
# How to use
|
13
20
|
|
14
21
|
Go to your `.xcodeproj` folder `cd /paht/to/my/xcodeproj`.
|
data/Rakefile
ADDED
data/ccios.gemspec
CHANGED
data/lib/ccios/code_templater.rb
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
import Foundation
|
10
10
|
|
11
11
|
{{#generate_delegate}}
|
12
|
-
protocol {{name}}CoordinatorDelegate
|
12
|
+
protocol {{name}}CoordinatorDelegate: class {
|
13
13
|
|
14
14
|
}
|
15
15
|
|
@@ -25,7 +25,7 @@ class {{name}}Coordinator: Coordinator {
|
|
25
25
|
self.navigationController = navigationController
|
26
26
|
}
|
27
27
|
|
28
|
-
//MARK: - Public
|
28
|
+
// MARK: - Public
|
29
29
|
|
30
30
|
func start() {
|
31
31
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ccios
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pierre Felgines
|
@@ -63,6 +63,7 @@ files:
|
|
63
63
|
- Gemfile
|
64
64
|
- Gemfile.lock
|
65
65
|
- README.md
|
66
|
+
- Rakefile
|
66
67
|
- bin/ccios
|
67
68
|
- ccios.gemspec
|
68
69
|
- lib/ccios.rb
|