rbbt-util 5.6.7 → 5.6.8
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/rbbt/util/simpleopt/doc.rb +2 -1
- data/lib/rbbt/workflow/usage.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: 604a8028d6171f4fbffbc559fdb542860e8fad07
|
4
|
+
data.tar.gz: 7ceb01cd346987e440d5ded8aec7e741ade11831
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 635cec0dc4621e5a5414e6894c5e9c5d146f152fd7aabdb1b6fdca8b8ad6689f7e0bdbe6d52cd3853f5b62aec4fcea6bd8a15322951419baa5eb59b80f5cd669
|
7
|
+
data.tar.gz: 87d12e3c415a8bf309b952dbc71ab73d40912e19d3e28a123fc2e5aedac661759129c62529e2cdc6fe5c5a47044e4549ccfa1daa6a7cc00986a6d304ca517ff6
|
@@ -46,12 +46,13 @@ module SOPT
|
|
46
46
|
type = description = default = nil
|
47
47
|
shortcut = ""
|
48
48
|
inputs.collect do |name|
|
49
|
-
name = name.to_s
|
50
49
|
|
51
50
|
type = input_types[name] unless input_types.nil?
|
52
51
|
description = input_descriptions[name] unless input_descriptions.nil?
|
53
52
|
default = input_defaults[name] unless input_defaults.nil?
|
54
53
|
|
54
|
+
name = name.to_s
|
55
|
+
|
55
56
|
case input_shortcuts
|
56
57
|
when nil, FalseClass
|
57
58
|
shortcut = nil
|
data/lib/rbbt/workflow/usage.rb
CHANGED
@@ -6,7 +6,7 @@ module Task
|
|
6
6
|
puts "\n" << description << "\n" if description and not description.empty?
|
7
7
|
puts "Returns: " << Log.color(:blue, result_type.to_s) << "\n"
|
8
8
|
puts SOPT.input_doc(inputs, input_types, input_descriptions, input_defaults, true)
|
9
|
-
|
9
|
+
puts
|
10
10
|
|
11
11
|
|
12
12
|
if deps and deps.any?
|