boa 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -28,13 +28,12 @@ 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
-
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.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 = [[<%= @prefixed_module %>Wireframe alloc] init];
6
- <%= @prefixed_module %>Presenter *<%= @module.downcase %>Presenter = [[<%= @prefixed_module %>Presenter alloc] init];
7
- <%= @prefixed_module %>DataManager *<%= @module.downcase %>DataManager = [[<%= @prefixed_module %>DataManager alloc] init];
8
- <%= @prefixed_module %>Interactor *<%= @module.downcase %>Interactor = [[<%= @prefixed_module %>Interactor alloc] init];
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;
@@ -1,3 +1,3 @@
1
1
  module Boa
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
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.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: