raykit 0.0.348 → 0.0.351

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: 47d875c14b9a2f524614440ce2385794f5e1a8ccedf4762d791fe85591e39324
4
- data.tar.gz: 92eb63c54b8b2c807a6a1aa9de355cc483caaefdefcf3e91b7ed30a46ceca012
3
+ metadata.gz: 0f1a8c73f2e8e29861f9fe381db19d98eb91594cf4ced342e5fd90751c61b200
4
+ data.tar.gz: 8989c993736a2ec98d4f6baa6039793c3dbbc03cd1a2497ad722a3f4fedcbe8c
5
5
  SHA512:
6
- metadata.gz: 4bfba762b51922676d9cec8500d098b1ec46b6fda2e9b512c163839d4ebfb612806e4ee4854f303f4e46729e6fcc777717638e1f5f0d8550f96fd0403343da30
7
- data.tar.gz: 9b16c779a568c838fa3f9ef63f64a80ecc91011533d51df0d2ac21247bab4b6d6ce3ee0cc8b5538da51cde5f53db7365534e59742fcc1cd1f14cf7f040a13dbe
6
+ metadata.gz: f72d709499efd21d591d4d8b925b74a9e46637a7bb6c0698a1819bb259334f3cad297c7ac5d9c9809236de616c35a6cba1bc002446dcd6d4e9d7a3fc6d7c8fa5
7
+ data.tar.gz: 938e6f5be70f73cf75653b12aa21b957202404027d729d3be587ccbb5e5dcb183dd9ff6999d82685c2afe60855d6b09f3b2f4faea88bd77fe35f77550eb92373
@@ -63,7 +63,7 @@ module Raykit
63
63
  @output, @error, process_status = Open3.capture3(@command)
64
64
  @exitstatus = process_status.exitstatus
65
65
  else
66
- puts "@timeout is #{@timeout}"
66
+ #puts "@timeout is #{@timeout}"
67
67
  Open3.popen3(@command, chdir: @directory) do |_stdin, stdout, stderr, thread|
68
68
  tick = 1
69
69
  pid = thread.pid
@@ -10,6 +10,7 @@ module Raykit
10
10
  # C:\Program Files\Microsoft Visual Studio\2022\Community\Msbuild\Current\Bin
11
11
  def self.msbuild_path
12
12
  ["2022/Community/Msbuild/Current/Bin",
13
+ "2022/Professional/Msbuild/Current/Bin",
13
14
  "2019/Enterprise/MSBuild/Current/Bin",
14
15
  "2019/Professional/MSBuild/Current/Bin",
15
16
  "2019/Community/MSBuild/Current/Bin",
@@ -293,7 +293,7 @@ module Raykit
293
293
  if !cmd.exitstatus.nil? && cmd.exitstatus.zero?
294
294
  else
295
295
  # display error details
296
- puts cmd.output
296
+ #puts cmd.output
297
297
  puts cmd.error
298
298
  puts
299
299
  abort "#{Rainbow(elapsed_str).red.bright} #{Rainbow(cmd.command).white}" if quit_on_failure
data/lib/raykit/vstest.rb CHANGED
@@ -3,7 +3,8 @@
3
3
  module Raykit
4
4
  class VsTest
5
5
  def self.vstest_path
6
- ["2019/Community/Common7/IDE/CommonExtensions/Microsoft",
6
+ ["2022/Community/Common7/IDE/CommonExtensions/Microsoft/TestWindow",
7
+ "2019/Community/Common7/IDE/CommonExtensions/Microsoft",
7
8
  "2019/Professional/Common7/IDE/Extensions/TestPlatform",
8
9
  "2019/Community/Common7/IDE/Extensions",
9
10
  "2019/Community/Common7/IDE/Extensions/TestPlatform",
data/lib/raykit/zip.rb CHANGED
@@ -58,7 +58,7 @@ module Raykit
58
58
  }
59
59
  end
60
60
  zipfile.close
61
- puts " added " << count.to_s << " files to " << @filename
61
+ puts " added " << count << " files to " << @filename
62
62
  }
63
63
  end
64
64
  end
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.348
4
+ version: 0.0.351
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-03-09 00:00:00.000000000 Z
11
+ date: 2022-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0.9'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubyzip
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.3'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.3'
69
83
  description: supports common ci/cd development tasks
70
84
  email: lou.parslow@gmail.com
71
85
  executables:
@@ -125,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
139
  - !ruby/object:Gem::Version
126
140
  version: '0'
127
141
  requirements: []
128
- rubygems_version: 3.2.22
142
+ rubygems_version: 3.3.7
129
143
  signing_key:
130
144
  specification_version: 4
131
145
  summary: ruby gem to support rake ci/cd tasks