boa 0.1.0 → 0.1.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 +16 -11
- data/boa.gemspec +1 -1
- data/lib/boa/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -4,15 +4,7 @@ Boa is a simple gem to initialize VIPER projects and add modules to them.
|
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
gem 'boa'
|
10
|
-
|
11
|
-
And then execute:
|
12
|
-
|
13
|
-
$ bundle
|
14
|
-
|
15
|
-
Or install it yourself as:
|
7
|
+
Install gem with:
|
16
8
|
|
17
9
|
$ gem install boa
|
18
10
|
|
@@ -22,11 +14,24 @@ Or install it yourself as:
|
|
22
14
|
|
23
15
|
2. Initialize basic VIPER structure with
|
24
16
|
|
25
|
-
|
17
|
+
```
|
18
|
+
boa init
|
19
|
+
```
|
26
20
|
|
27
21
|
3. Input your project name and the author (these will be used in generated files). You can change these settings in `.boa.yml`
|
28
22
|
|
29
23
|
4. Create your module with
|
30
24
|
|
31
|
-
|
25
|
+
```
|
26
|
+
boa module create Example
|
27
|
+
```
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
|
31
|
+
Contributions are always welcome! :)
|
32
32
|
|
33
|
+
1. Fork it ( http://github.com/jbslabs/boa/fork )
|
34
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
35
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
36
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
37
|
+
5. Create new Pull Request
|
data/boa.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["balazs.kovacs@jbslabs.com"]
|
11
11
|
spec.summary = %q{A simple gem for creating VIPER projects and modules.}
|
12
12
|
spec.description = %q{This gem provides VIPER initialization and module generation functionalities.}
|
13
|
-
spec.homepage = "
|
13
|
+
spec.homepage = "https://github.com/jbslabs/boa"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/boa/version.rb
CHANGED
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.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -98,7 +98,7 @@ files:
|
|
98
98
|
- lib/boa/templates/RootWireframe.h
|
99
99
|
- lib/boa/templates/RootWireframe.m
|
100
100
|
- lib/boa/version.rb
|
101
|
-
homepage:
|
101
|
+
homepage: https://github.com/jbslabs/boa
|
102
102
|
licenses:
|
103
103
|
- MIT
|
104
104
|
post_install_message:
|