raykit 0.0.323 → 0.0.324

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: efd74944a1f30ac6317bef794cc964e37e484cef50814f0702b61b7b17c1d4d2
4
- data.tar.gz: 5eb12a1cafeb1dd6812d5747ea90046face2dfefffdc4c6008ec7d4593d26a4a
3
+ metadata.gz: 81089beb30d730e2385e652fc0b80639d1bd37876dbb6403d140182179c68d18
4
+ data.tar.gz: c31d7175f5d200be4d99fcc53fe4cd2710735550bebac81209b75ec3f6ef0ba7
5
5
  SHA512:
6
- metadata.gz: 4848c9952dcc2853067c1e7ef54b275f1c08c4dd18dac99c5e692750bc2ce28d526bd7e74da7910e27577ae1251f2ba20fe0f6510c51a7ab5ea140a58722a8b0
7
- data.tar.gz: 8390ef4a06b1c5c48217dda4e729647750757e03c15e3a0a4ebc5c90c9dfae214f9422aedc329f5346b39903ad27986dec94f6c0311877b7645f0d0ddc52fffa
6
+ metadata.gz: 1b56b951547f6e61fb3af4a9fa7a11b3931e3036bd3dacddfaef465f8a50c174c33a753a55d532e7f2301900b4074ead738e4422454f1462afd63dd4bdd1397f
7
+ data.tar.gz: 3b634d24b4ebdeadf5ea58050891d714f30778422eb23269bc1329a60de12d9407adcdb956a857a2c4ddc23ece2edaee0f45e176b84c96b40939bb4733a0f259
@@ -87,7 +87,7 @@ module Raykit
87
87
  end
88
88
 
89
89
  def get_tag_commit_id(name)
90
- cmd = Raykit::Command.new("git rev-parse \"#{name}\"").run#, 0, nil, false)
90
+ cmd = Raykit::Command.new("git rev-parse \"#{name}\"").run
91
91
  if !cmd.output.include?("fatal") && !cmd.error.include?("fatal")
92
92
  cmd.output.strip
93
93
  else
@@ -96,7 +96,7 @@ module Raykit
96
96
  end
97
97
 
98
98
  def has_tag(name)
99
- cmd = Raykit::Command.new("git rev-parse \"#{name}\"", 0, nil, false)
99
+ cmd = Raykit::Command.new("git rev-parse \"#{name}\"").run
100
100
  if !cmd.output.include?("fatal") && !cmd.error.include?("fatal")
101
101
  true
102
102
  else
@@ -279,7 +279,7 @@ module Raykit
279
279
 
280
280
  def run(command, quit_on_failure = true)
281
281
  if command.is_a?(Array)
282
- command.each { |subcommand| run(subcommand, quit_on_failure, success_log_level) }
282
+ command.each { |subcommand| run(subcommand, quit_on_failure) }
283
283
  else
284
284
  cmd = Command.new(command).set_timeout(0).run
285
285
  cmd.summary
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raykit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.323
4
+ version: 0.0.324
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-29 00:00:00.000000000 Z
11
+ date: 2021-12-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler