raykit 0.0.338 → 0.0.339

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: 18941fdc04ae65021ac0c2d183eb0fce7670c5ca69732f7a59f3b239dc291a13
4
- data.tar.gz: 1723acc4c3e9a9f48fd4e63759604d525ae43ddd0212b0f2feeeaf62fa76767b
3
+ metadata.gz: 3ae6530c3fc3a49d862109823f0a882660b33f7a361c1883485d7f380c2fb520
4
+ data.tar.gz: 987d7a3aec85cfab634219a83b5703e21eeb2486455f705d7c9838df08809327
5
5
  SHA512:
6
- metadata.gz: 4e0eaaf42cd33826ea64436200849c4cc4e363507fd24a4f0dc8226f4ff20992514514108beaf04aa34205c3e4800a8c5ed6953bdf05c481f2bf7ad8f636c0f5
7
- data.tar.gz: cb667a3433fc26b5772452f31e813d4826e8e971f147560f847f9ce0f8c971721647d434999322f45bdebafed7861d5ccc2f76ab97e6bf6b3206eb5dfbf1f5a6
6
+ metadata.gz: fe294dcf3e4060fa95599dbb2767f9f4fd4202484cbe9f5463cd31ff75bca56d2a7bd18d53c2d05f25a54ecca1ab158b515f4b1896349a1878f96a411b63de07
7
+ data.tar.gz: 91e9488c14324214c8ce7132c4b1842dec796fb9464f63a9e46c7868c1bec5f27c8bed244e971e116673889760f1ba4287f0375436845a31a66948df2f2b958b
@@ -185,8 +185,9 @@ module Raykit
185
185
  error = "\u0058"
186
186
  symbol = Rainbow(checkmark.encode("utf-8")).green
187
187
  symbol = Rainbow(error.encode("utf-8")).red if @exitstatus != 0
188
+ cmd = "#{Rainbow(SECRETS.hide(@command)).yellow}"
188
189
  if show_directory
189
- puts "#{symbol} #{Rainbow(SECRETS.hide(@command)).yellow}" + Rainbow(" #{elapsed_str}").cyan()# (#{elapsed_str})"
190
+ puts "#{symbol} #{cmd} " + Rainbow("#{elapsed_str}").cyan #(#{@directory},#{elapsed_str})"
190
191
  puts Rainbow(" #{@directory}").cyan
191
192
  else
192
193
  puts "#{symbol} #{Rainbow(SECRETS.hide(@command)).yellow} (#{elapsed_str})"
@@ -40,7 +40,7 @@ module Raykit
40
40
  end
41
41
 
42
42
  def self.get_work_dir(url)
43
- "#{Raykit::Environment.get_dev_dir("work")}/#{url.gsub("://", "/").gsub(".git", "")}"
43
+ "#{Raykit::Environment.get_dev_dir("work")}/#{url.gsub("://", ".").gsub(".git", "")}"
44
44
  end
45
45
 
46
46
  # Get the size of a directory and its contents
@@ -2,6 +2,11 @@
2
2
 
3
3
  module Raykit
4
4
  class MsBuild
5
+ def self.fix_msbuild_path
6
+ # if msbuild in not in the current path,
7
+ # attempt to modify the path such that is it
8
+ end
9
+
5
10
  # C:\Program Files\Microsoft Visual Studio\2022\Community\Msbuild\Current\Bin
6
11
  def self.msbuild_path
7
12
  ["2022/Community/Msbuild/Current/Bin",
@@ -284,7 +284,7 @@ module Raykit
284
284
 
285
285
  def run(command, quit_on_failure = true)
286
286
  if command.is_a?(Array)
287
- command.each { |subcommand| run(subcommand, quit_on_failure, success_log_level) }
287
+ command.each { |subcommand| run(subcommand, quit_on_failure) }
288
288
  else
289
289
  cmd = Command.new(command).set_timeout(0).run
290
290
  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.338
4
+ version: 0.0.339
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-18 00:00:00.000000000 Z
11
+ date: 2022-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
125
  - !ruby/object:Gem::Version
126
126
  version: '0'
127
127
  requirements: []
128
- rubygems_version: 3.2.15
128
+ rubygems_version: 3.2.22
129
129
  signing_key:
130
130
  specification_version: 4
131
131
  summary: ruby gem to support rake ci/cd tasks