bolt_train_runner 0.3.0 → 0.3.1
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/bolt_train_runner/log.rb +4 -4
- data/lib/bolt_train_runner/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b25197619eff4234c94463f902d7e8698ce8a55817d463dda9053a41108b82ad
|
|
4
|
+
data.tar.gz: 7b36c35be76815ec4cb4636c1ed62168d81638c5474dd3d28c0fb77e813f0a1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e39aa39ed122fb610a6c8c45309790f20ccfaa6a2d9533e0a5de26e1865d8f757782bdb2add146fc876e8d85bc479b068e4f39893741876c2f784fe8b4bb0e69
|
|
7
|
+
data.tar.gz: b3da09e2cd356e404d59ce7334c00adb1d73998a1257a61a75e6a9e957cca6d35f7b5d412ec96ee8eee3d944b669a8131e0149a24c2855ea1f3ddb4a69c59258
|
|
@@ -46,7 +46,7 @@ class Log
|
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
def info_console(msg)
|
|
49
|
-
info(msg, true, false)
|
|
49
|
+
info(msg.green, true, false)
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
def info_file(msg)
|
|
@@ -59,7 +59,7 @@ class Log
|
|
|
59
59
|
end
|
|
60
60
|
|
|
61
61
|
def warn_console(msg)
|
|
62
|
-
warn(msg, true, false)
|
|
62
|
+
warn(msg.yellow, true, false)
|
|
63
63
|
end
|
|
64
64
|
|
|
65
65
|
def warn_file(msg)
|
|
@@ -72,7 +72,7 @@ class Log
|
|
|
72
72
|
end
|
|
73
73
|
|
|
74
74
|
def error_console(msg)
|
|
75
|
-
error(msg, true, false)
|
|
75
|
+
error(msg.red, true, false)
|
|
76
76
|
end
|
|
77
77
|
|
|
78
78
|
def error_file(msg)
|
|
@@ -85,7 +85,7 @@ class Log
|
|
|
85
85
|
end
|
|
86
86
|
|
|
87
87
|
def fatal_console(msg)
|
|
88
|
-
fatal(msg, true, false)
|
|
88
|
+
fatal(msg.red, true, false)
|
|
89
89
|
end
|
|
90
90
|
|
|
91
91
|
def fatal_file(msg)
|