makit 0.0.93 → 0.0.94
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/makit/mp/string_mp.rb +2 -8
- data/lib/makit/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: 7507d3c17591c6c23f31816e3872afb6bed0237cce6a6a24204599bb142cf278
|
4
|
+
data.tar.gz: b27f995a4ba6a5e91daad9029a976cb698fcfc32b6c100cca944bc74eeb62f31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5f9c06cd2db2b4e3d4aa85586348a4fe403b476f8f094bd182e7fe98ef38f4063affaf573c6d4ff847fcd0325f53d4fc9db80127d6a3a9a2ad434bfb5341759
|
7
|
+
data.tar.gz: 2d745f1c4c7fb404eb69f1fc2cf9de7de7029dfa7cd9c2d8e4321930c9d024ba36a735625c9c05cdbc32f3513a07db7849fd191fa773342f353ae35c58d55b6b
|
data/lib/makit/mp/string_mp.rb
CHANGED
@@ -76,16 +76,10 @@ class String
|
|
76
76
|
command = self
|
77
77
|
cmd = Makit::RUNNER.run(Makit::RUNNER::parse_command_request(command))
|
78
78
|
# write the cmd output and error to the file
|
79
|
-
File.write(filename, cmd.
|
79
|
+
File.write(filename, cmd.output + cmd.error)
|
80
80
|
|
81
81
|
# display the summary of the command
|
82
|
-
|
83
|
-
puts cmd.summary
|
84
|
-
else
|
85
|
-
puts cmd.summary
|
86
|
-
puts cmd.stdout
|
87
|
-
puts cmd.stderr
|
88
|
-
end
|
82
|
+
Makit::RUNNER.show_command(cmd)
|
89
83
|
end
|
90
84
|
|
91
85
|
def cache_try()
|
data/lib/makit/version.rb
CHANGED