stanwood 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.
- checksums.yaml +4 -4
- data/bin/stanwood +5 -0
- data/lib/stanwood/version.rb +1 -1
- data/lib/stanwood.rb +2 -18
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82ee76ec7d82e0239b02a08e95f9af552c71a829
|
|
4
|
+
data.tar.gz: 8bd3f868f816d176de6a645b67215332b4844594
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc7dee50f9e0b4641b70bde8fbf30ee084c1741875e15cbee86c1646c6f11e10ddb0906d48cd059763336ad4f362bf4fa0632eef27aba87713827a1260a80c07
|
|
7
|
+
data.tar.gz: 44ff1fc453a0585b0581be52f61503de9e88b44fae7fae4a5f0f385ae6ced3d7f58f0a6dcde823f429eb799b2a26888ad638e5b9f0705a7ad62bc639c08bfb11
|
data/bin/stanwood
ADDED
data/lib/stanwood/version.rb
CHANGED
data/lib/stanwood.rb
CHANGED
|
@@ -1,23 +1,7 @@
|
|
|
1
1
|
require "stanwood/version"
|
|
2
2
|
|
|
3
3
|
module Stanwood
|
|
4
|
-
def self.hi
|
|
5
|
-
puts "Testing stanwood gem"
|
|
4
|
+
def self.hi(name)
|
|
5
|
+
puts "Testing stanwood gem" + name
|
|
6
6
|
end
|
|
7
7
|
end
|
|
8
|
-
|
|
9
|
-
#
|
|
10
|
-
# class Stanwood::Translator
|
|
11
|
-
# def initialize(language)
|
|
12
|
-
# @language = language
|
|
13
|
-
# end
|
|
14
|
-
#
|
|
15
|
-
# def hi
|
|
16
|
-
# case @language
|
|
17
|
-
# when "spanish"
|
|
18
|
-
# "hola mundo"
|
|
19
|
-
# else
|
|
20
|
-
# "hello world"
|
|
21
|
-
# end
|
|
22
|
-
# end
|
|
23
|
-
# end
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stanwood
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tal Zion
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2019-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -55,10 +55,12 @@ dependencies:
|
|
|
55
55
|
description: STANWOOD manages stanwood related tempalte to support our architecture
|
|
56
56
|
email:
|
|
57
57
|
- talezion@gmail.com
|
|
58
|
-
executables:
|
|
58
|
+
executables:
|
|
59
|
+
- stanwood
|
|
59
60
|
extensions: []
|
|
60
61
|
extra_rdoc_files: []
|
|
61
62
|
files:
|
|
63
|
+
- bin/stanwood
|
|
62
64
|
- lib/stanwood.rb
|
|
63
65
|
- lib/stanwood/version.rb
|
|
64
66
|
homepage: https://github.com/gems/stanwood-xctemplate
|