yorobot 1.0.4 → 1.0.5
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/lib/yorobot.rb +2 -0
- data/lib/yorobot/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4931ab505816c670703c70436f67ecd4de97c760
|
4
|
+
data.tar.gz: 123dfa5ee68956938511b39605ec8af3dd170b9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4df1fc46880e69e507cc3c8ebac1260d79f87c559833dd2cc420f522f39926feedf1b591b59ce6846b8fd51bab4b7ddb50166363dd3e3f4b594b9634c3b67467
|
7
|
+
data.tar.gz: c5177acd3ee61b6059d30c4016a051ae84a1e9d7feb3bced07ea41f55882f18a6d384325aba712a5f3012e3a5b1168fb450bd5122f82a8ed9ccaf9bec0b11fe9
|
data/lib/yorobot.rb
CHANGED
@@ -89,6 +89,7 @@ end # module Flow
|
|
89
89
|
|
90
90
|
|
91
91
|
module Yorobot
|
92
|
+
class Tool
|
92
93
|
def self.main( args=ARGV )
|
93
94
|
|
94
95
|
## setup/check mono root
|
@@ -117,6 +118,7 @@ module Yorobot
|
|
117
118
|
## pass along to "standard" flow engine
|
118
119
|
::Flow::Tool.main( args )
|
119
120
|
end
|
121
|
+
end # class Tool
|
120
122
|
end # module Yorobot
|
121
123
|
|
122
124
|
|
data/lib/yorobot/version.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
module YorobotCore ## todo/check: rename GittiBase or GittiMeta or such - why? why not?
|
7
7
|
MAJOR = 1 ## todo: namespace inside version or something - why? why not??
|
8
8
|
MINOR = 0
|
9
|
-
PATCH =
|
9
|
+
PATCH = 5
|
10
10
|
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
11
11
|
|
12
12
|
def self.version
|