stanwood 0.2.1 β†’ 0.3.0

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: a8d40a6bfbeb77170942b338bbab005901747827
4
- data.tar.gz: 6b03637d7e177e9d9a959c81427adc5cc065d292
3
+ metadata.gz: 39b3b0c7f36aa600ff8eae1c91d7bbc0f1978ddb
4
+ data.tar.gz: d804e39240461f62ecaf55e5c9dd1a45c6f79e95
5
5
  SHA512:
6
- metadata.gz: 729b7e0975a263eab171b977ee5f6ca0bc20563be700d4301bc98f483e4142187137674abb18d24dd80cc5d6d90b903aa2cab86898fb4ce11a890ddbfa6c5f46
7
- data.tar.gz: c8eb4ed9744734d27a3d6b89cbd8e5215520d19fa2e78d775cf7ca881e5317397d62a8984013f3fbd59ea67c947955c1687d1bdb91dd5ff7fb8f21f321f3713a
6
+ metadata.gz: dd64c94e713708c85e4ab921e8b836a6e56f62d8aefcde51501fadf259b10692e69889e0f884d5fd6210e9780cc97a01471258b239eeaacdf158a3cae8afaa2a
7
+ data.tar.gz: 656051164c2386463cd74ff8bcc993b7214ac013bc591be39a93651c13f1b11ae7d95dc22269b51be582850f5a25e2b4fb59d1ddaf6cd63667cc38096f0827e7
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/stanwood.svg)](https://badge.fury.io/rb/stanwood)
4
4
 
5
- stanwood Command line tool support stanwood architecture, generates base projects with boiler plate code, and necessary templates.
5
+ // TODO
6
6
 
7
7
  ## Installation
8
8
 
@@ -19,31 +19,12 @@ And then execute:
19
19
 
20
20
  Or install it yourself as:
21
21
  ```
22
- $ sudo gem install stanwood
22
+ $ gem install stanwood
23
23
  ```
24
24
 
25
25
  ## Usage
26
26
 
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
- ```
27
+ TODO: Write usage instructions here
47
28
 
48
29
  ## Development
49
30
 
@@ -53,12 +34,8 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
53
34
 
54
35
  ## Contributing
55
36
 
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.
37
+ 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.
57
38
 
58
39
  ## Code of Conduct
59
40
 
60
41
  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.
@@ -5,7 +5,9 @@ module Stanwood
5
5
  def execute(project_name, platform)
6
6
  case
7
7
  when platform == "--ios"
8
- # system("echo Cloning Xcode Template")
8
+ puts "\nπŸš€πŸš€πŸš€"
9
+ system("ls")
10
+ system("sh /Users/talzion/Stanwood/stanwood-xctemplate/lib/stanwood/create.sh " + project_name)
9
11
  # system("git clone git@github.com:stanwood/Xcode_Templates_iOS.git /echo tmp/xcode_template")
10
12
  #
11
13
  # system("Running...")
@@ -13,7 +15,7 @@ module Stanwood
13
15
  #
14
16
  # system("echo Finishing installation")
15
17
  # system("rm -rf /tmp/xcode_template")
16
- puts "\nπŸš€πŸš€πŸš€ We are working on this awesome feature for iOS. Stay tuned!!! πŸš€πŸš€πŸš€\n\n"
18
+ puts "\nπŸš€πŸš€πŸš€"
17
19
  exit
18
20
  when platform == "--backend"
19
21
  puts "\nπŸš€πŸš€πŸš€ We are working on this awesome feature for Backend. Stay tuned!!! πŸš€πŸš€πŸš€\n\n"
@@ -1,3 +1,3 @@
1
1
  module Stanwood
2
- VERSION = "0.2.1"
2
+ VERSION = "0.3.0"
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 templates to support different architecture"
15
- s.homepage = "https://github.com/stanwood/stanwood-xctemplate"
14
+ s.description = "STANWOOD manages stanwood related tempalte to support our architecture"
15
+ s.homepage = "https://github.com/gems/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.1
4
+ version: 0.3.0
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-22 00:00:00.000000000 Z
11
+ date: 2019-06-28 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 templates to support different architecture
83
+ description: STANWOOD manages stanwood related tempalte to support our architecture
84
84
  email:
85
85
  - talezion@gmail.com
86
86
  executables:
@@ -94,7 +94,6 @@ files:
94
94
  - CODE_OF_CONDUCT.md
95
95
  - Gemfile
96
96
  - Gemfile.lock
97
- - LICENSE.md
98
97
  - README.md
99
98
  - Rakefile
100
99
  - bin/console
@@ -108,7 +107,7 @@ files:
108
107
  - spec/spec_helper.rb
109
108
  - spec/stanwood_spec.rb
110
109
  - stanwood.gemspec
111
- homepage: https://github.com/stanwood/stanwood-xctemplate
110
+ homepage: https://github.com/gems/stanwood-xctemplate
112
111
  licenses:
113
112
  - MIT
114
113
  metadata: {}
data/LICENSE.md DELETED
@@ -1,21 +0,0 @@
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.