mixlib-shellout 3.0.7 → 3.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mixlib/shellout.rb +3 -3
- data/lib/mixlib/shellout/version.rb +1 -1
- data/lib/mixlib/shellout/windows.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: f397fa01d53b269d311c32ad263372d115735935d637385ac9fc735b504216bd
|
4
|
+
data.tar.gz: c871d5ef88067456dc0b11d2fc3eae6cacaf3a2ccffd90a1b14e15555389301e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00e5a3bd7d562a937d9719f61a8043181a5ab4e6b40ce698dffd1f1fc7ce5cc4376739cadeb259749cce448d84ba559134caf5474e9cede4f4f120fa96b3701f
|
7
|
+
data.tar.gz: 76f80cba51a657c26a978668ecc04d9d96c2b8f6242968b55b022b97642963d7d5f1c2c482357508e46aae1b68dc43317d86ba3e38566b232c29c2d25b635046
|
data/lib/mixlib/shellout.rb
CHANGED
@@ -19,7 +19,7 @@
|
|
19
19
|
require "etc"
|
20
20
|
require "tmpdir"
|
21
21
|
require "fcntl"
|
22
|
-
|
22
|
+
require_relative "shellout/exceptions"
|
23
23
|
|
24
24
|
module Mixlib
|
25
25
|
|
@@ -29,10 +29,10 @@ module Mixlib
|
|
29
29
|
DEFAULT_READ_TIMEOUT = 600
|
30
30
|
|
31
31
|
if RUBY_PLATFORM =~ /mswin|mingw32|windows/
|
32
|
-
|
32
|
+
require_relative "shellout/windows"
|
33
33
|
include ShellOut::Windows
|
34
34
|
else
|
35
|
-
|
35
|
+
require_relative "shellout/unix"
|
36
36
|
include ShellOut::Unix
|
37
37
|
end
|
38
38
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mixlib-shellout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chef Software Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Run external commands on Unix or Windows
|
14
14
|
email: info@chef.io
|