autowow 0.9.3 → 0.9.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/autowow/executor.rb +3 -2
- data/lib/autowow/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: 4ca8b140d2c77c68759178074dc889dea604f438
|
4
|
+
data.tar.gz: f5837c3ac5ec47063e29e2fcd1966636179ac265
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cecf5324979658ea0f2d010a7b5fd1b49430752b4dcf18bcfeb75c4420dcd4bf7d727b19d612ce6fc36ab1dd0dac5b5291b71d6533b2a4f10bef442de25a51e
|
7
|
+
data.tar.gz: 95cdae9f81dbff80dc5fc850ea278aac019365df99e125b9c91887c7682ef8153b4b697d03bbda75cd118bdb65c6e95510db6e0f295426a200890190eb093abf
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
#### Set of commands to [auto]mate [w]ay [o]f [w]orking
|
4
4
|
|
5
|
-
*You are viewing the README of version [v0.9.
|
5
|
+
*You are viewing the README of version [v0.9.4](https://github.com/thisismydesign/autowow/releases/tag/v0.9.4). You can find other releases [here](https://github.com/thisismydesign/autowow/releases).*
|
6
6
|
|
7
7
|
| Branch | Status |
|
8
8
|
| ------ | ------ |
|
data/lib/autowow/executor.rb
CHANGED
@@ -36,11 +36,12 @@ module Autowow
|
|
36
36
|
def print_command_exit(cmd, status, runtime, *args)
|
37
37
|
@out.each_line.map(&:chomp).each { |line| write(cmd, line) }
|
38
38
|
super
|
39
|
+
write(TTY::Command::Cmd.new("dummy"), "", false)
|
39
40
|
end
|
40
41
|
|
41
|
-
def write(cmd, message,
|
42
|
+
def write(cmd, message, uuid_needed = true)
|
42
43
|
out = []
|
43
|
-
out << "[#{decorate(cmd.uuid, :green)}] "
|
44
|
+
out << "[#{decorate(cmd.uuid, :green)}] " if uuid_needed && !cmd.uuid.nil?
|
44
45
|
out << "#{message}\n"
|
45
46
|
output << out.join
|
46
47
|
end
|
data/lib/autowow/version.rb
CHANGED