stanwood 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d070fb0ab2cef4352fa0bd0c7611cfda2b6ef6a
4
- data.tar.gz: 52e1307c8447e582a20e0339e096aba611fefbf5
3
+ metadata.gz: a8d40a6bfbeb77170942b338bbab005901747827
4
+ data.tar.gz: 6b03637d7e177e9d9a959c81427adc5cc065d292
5
5
  SHA512:
6
- metadata.gz: f04134c49609ab74762da8b0ee2e4d780d37f345b62cbfd44430f78bb892bd9696be3ec8750a9af6f63923adf62fe0d402c05be28aaada06859d90133a78938f
7
- data.tar.gz: 4449f3ac6c42681b39518b4dc203340c456b103be8b02ba4c569f89dea3c37d2b551cd1bdd074ad0b190afd3493c10c97bad99cebb34b93f82edb7011e5ec2b7
6
+ metadata.gz: 729b7e0975a263eab171b977ee5f6ca0bc20563be700d4301bc98f483e4142187137674abb18d24dd80cc5d6d90b903aa2cab86898fb4ce11a890ddbfa6c5f46
7
+ data.tar.gz: c8eb4ed9744734d27a3d6b89cbd8e5215520d19fa2e78d775cf7ca881e5317397d62a8984013f3fbd59ea67c947955c1687d1bdb91dd5ff7fb8f21f321f3713a
data/Gemfile.lock ADDED
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ stanwood (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.3)
10
+ rake (10.5.0)
11
+ rspec (3.8.0)
12
+ rspec-core (~> 3.8.0)
13
+ rspec-expectations (~> 3.8.0)
14
+ rspec-mocks (~> 3.8.0)
15
+ rspec-core (3.8.0)
16
+ rspec-support (~> 3.8.0)
17
+ rspec-expectations (3.8.2)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.8.0)
20
+ rspec-mocks (3.8.0)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.8.0)
23
+ rspec-support (3.8.0)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ bundler (~> 1.16)
30
+ rake (~> 10.0)
31
+ rspec (~> 3.0)
32
+ stanwood!
33
+
34
+ BUNDLED WITH
35
+ 1.16.6
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Stanwood GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Stanwood
2
2
 
3
- // TODO
3
+ [![Gem Version](https://badge.fury.io/rb/stanwood.svg)](https://badge.fury.io/rb/stanwood)
4
+
5
+ stanwood Command line tool support stanwood architecture, generates base projects with boiler plate code, and necessary templates.
4
6
 
5
7
  ## Installation
6
8
 
@@ -17,12 +19,31 @@ And then execute:
17
19
 
18
20
  Or install it yourself as:
19
21
  ```
20
- $ gem install stanwood
22
+ $ sudo gem install stanwood
21
23
  ```
22
24
 
23
25
  ## Usage
24
26
 
25
- TODO: Write usage instructions here
27
+ ```
28
+ Usage:
29
+
30
+ $ stanwood COMMAND
31
+ Stanwood, the stanwood architecture template manager
32
+
33
+ Commands:
34
+
35
+ + create Create a new project template
36
+ + install Installs project templates
37
+
38
+
39
+ Options
40
+
41
+ --ios Sets iOS platform attribue
42
+ --backend Sets Android platform attribue
43
+ --android Sets API platform attribue
44
+ -v, --version Print version number
45
+ -h, --help Show help banner of specified command
46
+ ```
26
47
 
27
48
  ## Development
28
49
 
@@ -32,8 +53,12 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
53
 
33
54
  ## Contributing
34
55
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/stanwood. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
56
+ Bug reports and pull requests are welcome on GitHub at https://github.com/stanwood/stanwood. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
57
 
37
58
  ## Code of Conduct
38
59
 
39
60
  Everyone interacting in the Stanwood project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/stanwood/blob/master/CODE_OF_CONDUCT.md).
61
+
62
+ ## Licence
63
+
64
+ stanwood is under MIT licence. See the [LICENSE](https://github.com/stanwood/stanwood-xctemplate/blob/master/LICENSE.md) file for more info.
@@ -9,7 +9,7 @@ module Stanwood
9
9
  # system("git clone git@github.com:stanwood/Xcode_Templates_iOS.git /echo tmp/xcode_template")
10
10
  #
11
11
  # system("Running...")
12
- # system("chmod +x /tmp/xcode_template/Template/configure ", project_name)
12
+ # system("chmod +x ruby /tmp/xcode_template/Template/configure ", project_name)
13
13
  #
14
14
  # system("echo Finishing installation")
15
15
  # system("rm -rf /tmp/xcode_template")
@@ -1,3 +1,3 @@
1
1
  module Stanwood
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
data/stanwood.gemspec CHANGED
@@ -11,8 +11,8 @@ Gem::Specification.new do |s|
11
11
  s.email = ["talezion@gmail.com"]
12
12
  s.license = "MIT"
13
13
  s.summary = "The STANWOOD Architecture Templates"
14
- s.description = "STANWOOD manages stanwood related tempalte to support our architecture"
15
- s.homepage = "https://github.com/gems/stanwood-xctemplate"
14
+ s.description = "STANWOOD manages stanwood related templates to support different architecture"
15
+ s.homepage = "https://github.com/stanwood/stanwood-xctemplate"
16
16
 
17
17
  s.files = `git ls-files`.split($/)
18
18
  s.executables << 'stanwood'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stanwood
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tal Zion
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-19 00:00:00.000000000 Z
11
+ date: 2019-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored2
@@ -80,7 +80,7 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.0'
83
- description: STANWOOD manages stanwood related tempalte to support our architecture
83
+ description: STANWOOD manages stanwood related templates to support different architecture
84
84
  email:
85
85
  - talezion@gmail.com
86
86
  executables:
@@ -93,6 +93,8 @@ files:
93
93
  - ".travis.yml"
94
94
  - CODE_OF_CONDUCT.md
95
95
  - Gemfile
96
+ - Gemfile.lock
97
+ - LICENSE.md
96
98
  - README.md
97
99
  - Rakefile
98
100
  - bin/console
@@ -106,7 +108,7 @@ files:
106
108
  - spec/spec_helper.rb
107
109
  - spec/stanwood_spec.rb
108
110
  - stanwood.gemspec
109
- homepage: https://github.com/gems/stanwood-xctemplate
111
+ homepage: https://github.com/stanwood/stanwood-xctemplate
110
112
  licenses:
111
113
  - MIT
112
114
  metadata: {}