libis-workflow 2.0.8 → 2.0.9
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/base/job.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: 0df1613e9604d8765a790e186614091c075e31e2
|
|
4
|
+
data.tar.gz: d78c3bebc6438cab018a294e78e7dae8956f4200
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 941ad72846ddd8134630a2c25194f328a6fc3541861547864dccdf5677b0a8005d2cfedfd788dc0b0d0b8509270d56326586d6ecc4e7b4bab050b9e98c5c3cf4
|
|
7
|
+
data.tar.gz: 4e3dab8ee8e0fd451621521aff94843ab3de1a7e45a373749368e6ca03b51d2e9b0c40f0723a7c1ca4306e5eaedd7fd2825e26f6cb6364098d3d87bc4fa0c932
|
|
@@ -61,7 +61,7 @@ module Libis
|
|
|
61
61
|
raise RuntimeError.new "Could not create instance of run object '#{self.run_object}'" unless run
|
|
62
62
|
|
|
63
63
|
run.job = self
|
|
64
|
-
(opts.delete('run_config') || {}).each { |key,value| run.send(key, value) }
|
|
64
|
+
(opts.delete('run_config') || {}).each { |key,value| run.send("#{key}=", value) }
|
|
65
65
|
run.options = self.input.merge(opts)
|
|
66
66
|
run.save!
|
|
67
67
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module Libis
|
|
2
2
|
module Workflow
|
|
3
|
-
VERSION = '2.0.
|
|
3
|
+
VERSION = '2.0.9' unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
|
|
4
4
|
end
|
|
5
5
|
end
|