rakit 0.1.16 → 0.1.17
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/rakit/shell.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54c5ccb98b46a68c62c0e1868335a29fc39a88ee12bdcd6b4a0c5597de4d56f3
|
|
4
|
+
data.tar.gz: 3464547d6e65f16e69590514528439e51369f07faa1c31c8d20dedae6a0ce002
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f478bd89991a261d5981421eaf25bcbc4ddff2ca962e5503aa81f4adc3971ab10ef8e350f76d60673a74edfe907c9dbc5cf2bfafbd78cabcaaffa242952cc908
|
|
7
|
+
data.tar.gz: 8e4402b827c904a7a199b821174ee757bbcb3fd14b3613496ffaa1e355edbe911a0ad3b0d8d4e3fa992deb65a2a5d2b032fdaf1b7aed55df3314725ce4323617
|
data/lib/rakit/shell.rb
CHANGED
|
@@ -191,7 +191,7 @@ module Rakit
|
|
|
191
191
|
# Prints ✓ (green) + cmd on success, or ✗ (red) + cmd then stdout/stderr on failure. Returns the Command with result fields set.
|
|
192
192
|
def self.run(cmd)
|
|
193
193
|
command =
|
|
194
|
-
if Gem.win_platform?
|
|
194
|
+
if ::Gem.win_platform?
|
|
195
195
|
exe = ENV["COMSPEC"].to_s.strip
|
|
196
196
|
exe = "cmd.exe" if exe.empty?
|
|
197
197
|
Command.new(name: exe, args: ["/c", cmd.to_s], working_directory: "")
|