libis-workflow 2.0.beta.15 → 2.0.beta.16
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 +2 -2
- 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: 1c7f9825b84a021bec427c2590340176d1bd32b1
|
4
|
+
data.tar.gz: 9ab8fa711d3061a7b837fc093cf64e4868193b46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53569d8e13c02c1a059f6753c2f5da514b93f8ca05280bbd8959a1bfad47ee43d42ab4e8b7d6755f2e29c06a5f19acb91adcb2707aac40095a8a7611a4ea5b7d
|
7
|
+
data.tar.gz: c77740d9c2044d1809b0b7b3d38b5c529dcd37cc6a644d54f27762445eb1bdb4b461e3190a3dd88de6764b76961928745411d9aeb9497a19f09676fc56d7df6f
|
data/lib/libis/workflow/task.rb
CHANGED
@@ -163,12 +163,12 @@ module Libis
|
|
163
163
|
|
164
164
|
status = Hash.new(0)
|
165
165
|
items.each_with_index do |item, i|
|
166
|
-
debug 'Processing subitem (%d/%d): %s', parent_item, i+1,
|
166
|
+
debug 'Processing subitem (%d/%d): %s', parent_item, i+1, parent_item.item_count, item.to_s
|
167
167
|
run_item item
|
168
168
|
status[item.status(self.namepath)] += 1
|
169
169
|
end
|
170
170
|
|
171
|
-
debug '%d of %d subitems passed', parent_item, status[:DONE],
|
171
|
+
debug '%d of %d subitems passed', parent_item, status[:DONE], parent_item.item_count
|
172
172
|
substatus_check(status, parent_item, 'item')
|
173
173
|
end
|
174
174
|
|
@@ -2,6 +2,6 @@
|
|
2
2
|
|
3
3
|
module Libis
|
4
4
|
module Workflow
|
5
|
-
VERSION = '2.0.beta.
|
5
|
+
VERSION = '2.0.beta.16' unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
|
6
6
|
end
|
7
7
|
end
|