raykit 0.0.355 → 0.0.356

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: 96c8c452acacbbf24b902cdc0cb3cd92f0fc721f7943ca9bcee8ff9e677d32a7
4
- data.tar.gz: bfabf4afdfefe171f2439c1d472d024f286ad881d1682e5928ee35a7261f37c1
3
+ metadata.gz: 970051f5c9d31324b069f975e5e82e848bdb3a2c4979b1d5dcb377140d1423bd
4
+ data.tar.gz: b421db4b69c0517e222e5c0e432b59fe245b6e214f9688044c348136b277eb73
5
5
  SHA512:
6
- metadata.gz: 876b22fd0ca5fda5b9c043728dea408dc3c16a9ce4493b9ddc49735177d5df54d4212ab5e792ca910d9fea8a37eb77e0cd4db5035f53cf74c367e540e5a67335
7
- data.tar.gz: 1c846ff397d12ace2a2714b8a6f7c55ea8f69d02a4baecaedd05cde06b7f1f48e4b4562e953de16e34ad9fb2fd451f1dc0b1f9275ff9ffbdf581b46839baaa0e
6
+ metadata.gz: be8c067cfd59687b092f1f1c892ff618cfb53061c2adfdaf8f98ecaa69618e00641553e029a02705871422599ddebf3597ee8a78a218780b93544a7a9ed8946a
7
+ data.tar.gz: 0cf5624255668b456ab3d41230846374d3fa16084eec4689709dad8e7a8e04c10e4fa57ec3dcfadbe63b62ac08d04e1f4bf82178b8ad8cb5ce64835688acd7e4
@@ -36,8 +36,8 @@ module Raykit
36
36
  def self.get_dev_dir(name)
37
37
  dir = Pathname.new("#{Environment.root_dir}/#{name}")
38
38
  dir.mkpath
39
- if(dir.to_s.include?("https:") || dir.to_s.include?("http:"))
40
- dir.to_s.gsub("https://", ".").gsub("http://",".").gsub("//", "/")
39
+ if (dir.to_s.include?("https:") || dir.to_s.include?("http:"))
40
+ dir.to_s.gsub("https://", ".").gsub("http://", ".").gsub("//", "/")
41
41
  else
42
42
  dir
43
43
  end
@@ -10,7 +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
+ "2022/Professional/Msbuild/Current/Bin",
14
14
  "2019/Enterprise/MSBuild/Current/Bin",
15
15
  "2019/Professional/MSBuild/Current/Bin",
16
16
  "2019/Community/MSBuild/Current/Bin",
@@ -295,12 +295,13 @@ module Raykit
295
295
  else
296
296
  # display error details
297
297
  #puts cmd.output
298
+ $stderr.puts cmd.error
298
299
  if quit_on_failure
299
- abort cmd.error
300
- else
301
- puts cmd.error
300
+ abort #""#$cmd.error
301
+ #else
302
+ # $stderr.puts cmd.error
302
303
  end
303
-
304
+
304
305
  #puts
305
306
  #abort "#{Rainbow(elapsed_str).red.bright} #{Rainbow(cmd.command).white}" if quit_on_failure
306
307
  end
data/lib/raykit/zip.rb CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  require "zip"
3
2
 
4
3
  module Raykit
@@ -54,7 +53,7 @@ module Raykit
54
53
  #f.puts(fr.read)
55
54
  fr.close()
56
55
  f.close()
57
- count=count+1
56
+ count = count + 1
58
57
  }
59
58
  end
60
59
  zipfile.close
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raykit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.355
4
+ version: 0.0.356
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow