libis-workflow 2.0.beta.17 → 2.0.beta.18
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/libis/workflow/task.rb +1 -1
- data/lib/libis/workflow/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: ab1fb2a05e34660de16b7d6f5e5a63ab6e82010e
|
|
4
|
+
data.tar.gz: 9cb25d10d768ae11a0c819706c86a3bb2b5563f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 296a6a7ee5c10280d419a444b1fe09fa80d843c293f0ed68fc27ac40b9d6a5e23bc5167b64f46a687e33a28c9b42edbba5ed2a40ce18b17558b8a90cdbfc3582
|
|
7
|
+
data.tar.gz: d1caeafd347a546ea67f1e25017aea1077d8b8b9b9f52400624e29c584ebed6143c813f7930f095794c87434badb540c80fe6e3f7dd9531dc58f0bbbb62f2eab
|
data/lib/libis/workflow/task.rb
CHANGED
|
@@ -161,7 +161,7 @@ module Libis
|
|
|
161
161
|
return unless parent_item.count > 0
|
|
162
162
|
|
|
163
163
|
status = Hash.new(0)
|
|
164
|
-
|
|
164
|
+
subitems(parent_item).each_with_index do |item, i|
|
|
165
165
|
debug 'Processing subitem (%d/%d): %s', parent_item, i+1, parent_item.count, item.to_s
|
|
166
166
|
run_item item
|
|
167
167
|
status[item.status(self.namepath)] += 1
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
module Libis
|
|
4
4
|
module Workflow
|
|
5
|
-
VERSION = '2.0.beta.
|
|
5
|
+
VERSION = '2.0.beta.18' unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
|
|
6
6
|
end
|
|
7
7
|
end
|