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 +4 -4
- data/lib/raykit/git/directory.rb +2 -2
- data/lib/raykit/project.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81089beb30d730e2385e652fc0b80639d1bd37876dbb6403d140182179c68d18
|
4
|
+
data.tar.gz: c31d7175f5d200be4d99fcc53fe4cd2710735550bebac81209b75ec3f6ef0ba7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b56b951547f6e61fb3af4a9fa7a11b3931e3036bd3dacddfaef465f8a50c174c33a753a55d532e7f2301900b4074ead738e4422454f1462afd63dd4bdd1397f
|
7
|
+
data.tar.gz: 3b634d24b4ebdeadf5ea58050891d714f30778422eb23269bc1329a60de12d9407adcdb956a857a2c4ddc23ece2edaee0f45e176b84c96b40939bb4733a0f259
|
data/lib/raykit/git/directory.rb
CHANGED
@@ -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
|
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}\""
|
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
|
data/lib/raykit/project.rb
CHANGED
@@ -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
|
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.
|
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-
|
11
|
+
date: 2021-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|