libis-workflow 2.0.3 → 2.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/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: 7d753f69a705d04d62a20ee466028acdcbc864f7
|
4
|
+
data.tar.gz: 9b4c5abd4093ef030386159a4757edaa60f319ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca1c623c1694e01b64d2df8e30d14087b94784f67b5a924f31ef290bc87b47e3a41bcbfd16bd6087d1a886905701d8addd0976cbd2df5acf16b89b0808db8aa5
|
7
|
+
data.tar.gz: f9e9259c5410813f40d7c93a376ee54a5e19af4a10f8c792a53b70c44911832b6413cdb70e129fe7e3621137d161552ff12cc13bb6c7542af533d666a98bbf15
|
data/lib/libis/workflow/task.rb
CHANGED
@@ -135,11 +135,11 @@ module Libis
|
|
135
135
|
# do nothing
|
136
136
|
end
|
137
137
|
self.set_subject(subject)
|
138
|
+
return unless super(severity, msg, *args)
|
138
139
|
item.log_message(
|
139
140
|
severity, msg.is_a?(Integer) ? {id: msg} : {text: (msg.to_s rescue '')}.merge(task: taskname), *args
|
140
141
|
)
|
141
142
|
end
|
142
|
-
super severity, msg, *args
|
143
143
|
end
|
144
144
|
|
145
145
|
def logger
|
@@ -2,6 +2,6 @@
|
|
2
2
|
|
3
3
|
module Libis
|
4
4
|
module Workflow
|
5
|
-
VERSION = '2.0.
|
5
|
+
VERSION = '2.0.5' unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
|
6
6
|
end
|
7
7
|
end
|