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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af094464aa67a05b59248084955dbbdfe068405ce12d1e56c53afe0438b263ea
4
- data.tar.gz: eccb11273f07e88a45403330af65e0fd4dff19d592504ce4296aca9c077016ce
3
+ metadata.gz: 7507d3c17591c6c23f31816e3872afb6bed0237cce6a6a24204599bb142cf278
4
+ data.tar.gz: b27f995a4ba6a5e91daad9029a976cb698fcfc32b6c100cca944bc74eeb62f31
5
5
  SHA512:
6
- metadata.gz: 8ca0e6b3874b4eaf217d0153323a333945755b39f6c8126f4e4094778abb86a513ccb493c4865960e76c3da765c733b089f372a64f29507a36d97df717e79558
7
- data.tar.gz: c96b702ae748052ebee2027ae01cd023f03fb8acf1f1b2ca35b954cc3471fb3b7d9c5e78a037d51d4002f3494e99e49a1d6c99ddc3f005fd5acd2bed3680ea24
6
+ metadata.gz: e5f9c06cd2db2b4e3d4aa85586348a4fe403b476f8f094bd182e7fe98ef38f4063affaf573c6d4ff847fcd0325f53d4fc9db80127d6a3a9a2ad434bfb5341759
7
+ data.tar.gz: 2d745f1c4c7fb404eb69f1fc2cf9de7de7029dfa7cd9c2d8e4321930c9d024ba36a735625c9c05cdbc32f3513a07db7849fd191fa773342f353ae35c58d55b6b
@@ -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.stdout + cmd.stderr)
79
+ File.write(filename, cmd.output + cmd.error)
80
80
 
81
81
  # display the summary of the command
82
- if(cmd.exit_code == 0)
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
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Makit
4
- VERSION = "0.0.93"
4
+ VERSION = "0.0.94"
5
5
 
6
6
  class Version
7
7
  # given an array of version strings, return the highest version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.93
4
+ version: 0.0.94
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow