henry-container 0.1.77 → 0.1.78
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/henry/container/version.rb +1 -1
- data/lib/henry/execution.rb +2 -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: 7383ff0e8c47d02e9e193fe9679930bafdb7defc
|
4
|
+
data.tar.gz: ee3b19d1c4b90acbfa13fdbe7df603f554041d92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27156c202a9a5323d4a5a451cd4a56abc9aebfef875477845b085f9f8f27372e2663a4a5c5867ad6c2564e0b111ba3f67514be7fc2f362473e721dacd26ed52b
|
7
|
+
data.tar.gz: 32c7bd92cc27a53f16f0ad0ab97c0db84d86563c0b51a4a79d6ec9c1ad1fb0ded7f970e253dd48d9cd9eb5f159f8c4099707e0dc5e530e5ca9a45176a16c0f5d
|
data/lib/henry/execution.rb
CHANGED
@@ -4,7 +4,7 @@ module Henry
|
|
4
4
|
class Execution
|
5
5
|
|
6
6
|
# Accessors for task_name, code, message, output and backtrace.
|
7
|
-
attr_accessor :task_name, :code, :message, :output, :backtrace, :log, :params
|
7
|
+
attr_accessor :task_name, :code, :message, :output, :backtrace, :log, :params, :description
|
8
8
|
|
9
9
|
# Returns the json ready hash report of the Task Execution
|
10
10
|
#
|
@@ -14,6 +14,7 @@ module Henry
|
|
14
14
|
name: self.task_name,
|
15
15
|
code: self.code,
|
16
16
|
message: self.message,
|
17
|
+
description: self.description,
|
17
18
|
returnedData: map.merge({
|
18
19
|
output: self.output,
|
19
20
|
backtrace: self.backtrace
|