boa 0.2.0 → 0.2.1

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 CHANGED
@@ -28,6 +28,9 @@ boa module create Example
28
28
 
29
29
  ## Changes
30
30
 
31
+ #### v0.2.1
32
+ * added basic appledoc comments for interfaces and protocols
33
+
31
34
  #### v0.2.0
32
35
  * added class prefix option
33
36
 
@@ -8,6 +8,9 @@
8
8
 
9
9
  #import <Foundation/Foundation.h>
10
10
 
11
+ /**
12
+ Data manager for the <%= @module %> module.
13
+ */
11
14
  @interface <%= @prefixed_module %>DataManager : NSObject
12
15
 
13
16
  @end
@@ -13,6 +13,9 @@
13
13
 
14
14
  @class <%= @prefixed_module %>Presenter;
15
15
 
16
+ /**
17
+ Business logic for the <%= @module %> module.
18
+ */
16
19
  @interface <%= @prefixed_module %>Interactor : NSObject
17
20
 
18
21
  @property (nonatomic, strong) <%= @prefixed_module %>Presenter *presenter;
@@ -8,10 +8,16 @@
8
8
 
9
9
  #import <Foundation/Foundation.h>
10
10
 
11
+ /**
12
+ Module interface for the <%= @module %> module.
13
+ */
11
14
  @protocol <%= @prefixed_module %>ModuleInterface <NSObject>
12
15
 
13
16
  @end
14
17
 
18
+ /**
19
+ Module delegate for the <%= @module %> module.
20
+ */
15
21
  @protocol <%= @prefixed_module %>ModuleDelegate <NSObject>
16
22
 
17
23
  @end
@@ -17,6 +17,9 @@
17
17
  @class <%= @prefixed_module %>Wireframe;
18
18
  @class <%= @prefixed_module %>Interactor;
19
19
 
20
+ /**
21
+ Display logic for the <%= @module %> module.
22
+ */
20
23
  @interface <%= @prefixed_module %>Presenter : NSObject <<%= @prefixed_module %>ModuleInterface>
21
24
 
22
25
  @property (nonatomic, strong) <%= @prefixed_module %>Interactor *interactor;
@@ -11,6 +11,9 @@
11
11
  #import "<%= @prefixed_module %>ModuleInterface.h"
12
12
  #import "<%= @prefixed_module %>ViewInterface.h"
13
13
 
14
+ /**
15
+ View controller for the <%= @module %> module.
16
+ */
14
17
  @interface <%= @prefixed_module %>ViewController : UIViewController <<%= @prefixed_module %>ViewInterface>
15
18
 
16
19
  @property (nonatomic, strong) id<<%= @prefixed_module %>ModuleInterface> eventHandler;
@@ -8,6 +8,9 @@
8
8
 
9
9
  #import <Foundation/Foundation.h>
10
10
 
11
+ /**
12
+ View interface for the <%= @module %> module.
13
+ */
11
14
  @protocol <%= @prefixed_module %>ViewInterface <NSObject>
12
15
 
13
16
  @end
@@ -13,6 +13,9 @@
13
13
 
14
14
  @class <%= @prefixed_module %>Presenter;
15
15
 
16
+ /**
17
+ Module wireframe for the <%= @module %> module.
18
+ */
16
19
  @interface <%= @prefixed_module %>Wireframe : NSObject
17
20
 
18
21
  @property (nonatomic, strong) RootWireframe *rootWireframe;
@@ -8,6 +8,9 @@
8
8
 
9
9
  #import <UIKit/UIKit.h>
10
10
 
11
+ /**
12
+ App delegate for the <%= @project %> project.
13
+ */
11
14
  @interface <%= @project %>AppDelegate : UIResponder <UIApplicationDelegate>
12
15
 
13
16
  @property (strong, nonatomic) UIWindow *window;
@@ -9,6 +9,9 @@
9
9
  #import <Foundation/Foundation.h>
10
10
  #import <UIKit/UIKit.h>
11
11
 
12
+ /**
13
+ Dependency hierarchy for the <%= @project %> project.
14
+ */
12
15
  @interface <%= @project %>AppDependencies : NSObject
13
16
 
14
17
  - (id)initWithWindow:(UIWindow *)window;
@@ -9,6 +9,9 @@
9
9
  #import <UIKit/UIKit.h>
10
10
  #import <Foundation/Foundation.h>
11
11
 
12
+ /**
13
+ Root wireframe for the <%= @project %> project.
14
+ */
12
15
  @interface RootWireframe : NSObject
13
16
 
14
17
  - (id)initWithWindow:(UIWindow *)window;
data/lib/boa/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Boa
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: