raykit 0.0.337 → 0.0.338
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/raykit/command.rb +2 -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: 18941fdc04ae65021ac0c2d183eb0fce7670c5ca69732f7a59f3b239dc291a13
|
4
|
+
data.tar.gz: 1723acc4c3e9a9f48fd4e63759604d525ae43ddd0212b0f2feeeaf62fa76767b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e0eaaf42cd33826ea64436200849c4cc4e363507fd24a4f0dc8226f4ff20992514514108beaf04aa34205c3e4800a8c5ed6953bdf05c481f2bf7ad8f636c0f5
|
7
|
+
data.tar.gz: cb667a3433fc26b5772452f31e813d4826e8e971f147560f847f9ce0f8c971721647d434999322f45bdebafed7861d5ccc2f76ab97e6bf6b3206eb5dfbf1f5a6
|
data/lib/raykit/command.rb
CHANGED
@@ -186,7 +186,8 @@ module Raykit
|
|
186
186
|
symbol = Rainbow(checkmark.encode("utf-8")).green
|
187
187
|
symbol = Rainbow(error.encode("utf-8")).red if @exitstatus != 0
|
188
188
|
if show_directory
|
189
|
-
puts "#{symbol} #{Rainbow(SECRETS.hide(@command)).yellow} (#{
|
189
|
+
puts "#{symbol} #{Rainbow(SECRETS.hide(@command)).yellow}" + Rainbow(" #{elapsed_str}").cyan()# (#{elapsed_str})"
|
190
|
+
puts Rainbow(" #{@directory}").cyan
|
190
191
|
else
|
191
192
|
puts "#{symbol} #{Rainbow(SECRETS.hide(@command)).yellow} (#{elapsed_str})"
|
192
193
|
end
|