raykit 0.0.449 → 0.0.451

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: 7bb3f2df58a7c228f21279fa100cd2060b49d5223c9b70a006c2c6c25700ad2a
4
- data.tar.gz: f5bfea753a1dba8f5c0e705348b2844328a7d096b903abdcc012079554363247
3
+ metadata.gz: 3fb34b41a14a393a317fad1fef523fc3c9dfb3c2ce3390d11713e4c904191004
4
+ data.tar.gz: 92596aeaf3ea2ed758c70131d46ffa8cd9235ff88cc37363d384023a07e3400a
5
5
  SHA512:
6
- metadata.gz: 776a703b0d9db2bce3b5d73db1a38b44b7c702b45e888b66f0b03f79dfb038fdb76cde56834217de1df998210c905fd15d37b3e835c43ecc30cbc5a5d61cfa57
7
- data.tar.gz: f7ff83de387b52563d3de41dd77e8e290a974f9b459b67b3e75135c0e12df78ecad641c9c842dd861eea7d632ae8e027ebed91c2b2b3bc40a5e83f5abdc7d6c6
6
+ metadata.gz: f7e6fa2c3c13cb9e262ceb72c7f1ee246bf007e237e345ec5ef4fcb171cbef18b4f40d243356111bc9ec232be8bc2e8e39d540eeec3beb7905062c7be32c7e41
7
+ data.tar.gz: 017b0a0d31edd293b56baa81d1046aed5a2653b16484e2ee51d05ed489811dd51361f58ac00d2ea5700f4465c0d746ef55ca2f456225fdcb376929f7ae965032
@@ -24,6 +24,7 @@ module Raykit
24
24
  def self.msbuild_path
25
25
  ["2022/Community/Msbuild/Current/Bin",
26
26
  "2022/Professional/Msbuild/Current/Bin",
27
+ "2022/Enterprise/Msbuild/Current/Bin",
27
28
  "2019/Enterprise/MSBuild/Current/Bin",
28
29
  "2019/Professional/MSBuild/Current/Bin",
29
30
  "2019/Community/MSBuild/Current/Bin",
data/lib/raykit/tasks.rb CHANGED
@@ -38,12 +38,13 @@ end
38
38
 
39
39
  desc "push changes including tags"
40
40
  task :push do
41
+ puts Rainbow(": push").blue.bright
41
42
  git_dir = Raykit::Git::Directory.new(Rake.application.original_dir)
42
43
  if git_dir.detached?
43
44
  puts "detached head state, skipping push operations"
44
45
  else
45
- PROJECT.run("git push")
46
- PROJECT.run("git push --tags")
46
+ PROJECT.run("git push") if (!PROJECT.read_only?)
47
+ PROJECT.run("git push --tags") if (!PROJECT.read_only?)
47
48
  end
48
49
  end
49
50
 
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.449
4
+ version: 0.0.451
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-09 00:00:00.000000000 Z
11
+ date: 2023-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler