boa 0.2.1 → 0.2.2
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.
- data/README.md +4 -5
- data/lib/boa/module/templates/DependenciesBody.m +4 -4
- data/lib/boa/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -28,13 +28,12 @@ boa module create Example
|
|
28
28
|
|
29
29
|
## Changes
|
30
30
|
|
31
|
-
#### v0.2
|
32
|
-
* added basic appledoc comments for interfaces and protocols
|
33
|
-
|
34
|
-
#### v0.2.0
|
31
|
+
#### v0.2
|
35
32
|
* added class prefix option
|
33
|
+
* added basic appledoc comments for interfaces and protocols
|
34
|
+
* using new instead of alloc-init
|
36
35
|
|
37
|
-
#### v0.1
|
36
|
+
#### v0.1
|
38
37
|
* initial version
|
39
38
|
|
40
39
|
## Contributing
|
@@ -2,10 +2,10 @@
|
|
2
2
|
// begin <%= @module %> module
|
3
3
|
|
4
4
|
// instantiate classes
|
5
|
-
<%= @prefixed_module %>Wireframe *<%= @module.downcase %>Wireframe = [
|
6
|
-
<%= @prefixed_module %>Presenter *<%= @module.downcase %>Presenter = [
|
7
|
-
<%= @prefixed_module %>DataManager *<%= @module.downcase %>DataManager = [
|
8
|
-
<%= @prefixed_module %>Interactor *<%= @module.downcase %>Interactor = [
|
5
|
+
<%= @prefixed_module %>Wireframe *<%= @module.downcase %>Wireframe = [<%= @prefixed_module %>Wireframe new];
|
6
|
+
<%= @prefixed_module %>Presenter *<%= @module.downcase %>Presenter = [<%= @prefixed_module %>Presenter new];
|
7
|
+
<%= @prefixed_module %>DataManager *<%= @module.downcase %>DataManager = [<%= @prefixed_module %>DataManager new];
|
8
|
+
<%= @prefixed_module %>Interactor *<%= @module.downcase %>Interactor = [<%= @prefixed_module %>Interactor new];
|
9
9
|
|
10
10
|
// presenter <-> wireframe
|
11
11
|
<%= @module.downcase %>Presenter.wireframe = <%= @module.downcase %>Wireframe;
|
data/lib/boa/version.rb
CHANGED