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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ca06c3a60fc5bea01f33c33f69c43d7e8031d220a49625ded5753c47ecde9b9
4
- data.tar.gz: 815fa8031fa4b50a8d2477ace37aa20090fe78eb246715588b0bd3b19480444e
3
+ metadata.gz: f397fa01d53b269d311c32ad263372d115735935d637385ac9fc735b504216bd
4
+ data.tar.gz: c871d5ef88067456dc0b11d2fc3eae6cacaf3a2ccffd90a1b14e15555389301e
5
5
  SHA512:
6
- metadata.gz: 470b0b0c9b923f44580a3d73c33c4413b6df170b56e3a1c3e392e1f71882cb4cee3f9bb91750c3335f460f79c2684978cf3ceb95bc2324958e8cd191a8f772b4
7
- data.tar.gz: 7fb95480a956559fd665eae9031f54c832fd83a26ecd0dabc7c525ce5a2ca94c9f80427f6704ac64c18aceb8abf26db014131a90ed856e2994eccc10163cc9e3
6
+ metadata.gz: 00e5a3bd7d562a937d9719f61a8043181a5ab4e6b40ce698dffd1f1fc7ce5cc4376739cadeb259749cce448d84ba559134caf5474e9cede4f4f120fa96b3701f
7
+ data.tar.gz: 76f80cba51a657c26a978668ecc04d9d96c2b8f6242968b55b022b97642963d7d5f1c2c482357508e46aae1b68dc43317d86ba3e38566b232c29c2d25b635046
@@ -19,7 +19,7 @@
19
19
  require "etc"
20
20
  require "tmpdir"
21
21
  require "fcntl"
22
- require "mixlib/shellout/exceptions"
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
- require "mixlib/shellout/windows"
32
+ require_relative "shellout/windows"
33
33
  include ShellOut::Windows
34
34
  else
35
- require "mixlib/shellout/unix"
35
+ require_relative "shellout/unix"
36
36
  include ShellOut::Unix
37
37
  end
38
38
 
@@ -1,5 +1,5 @@
1
1
  module Mixlib
2
2
  class ShellOut
3
- VERSION = "3.0.7".freeze
3
+ VERSION = "3.0.9".freeze
4
4
  end
5
5
  end
@@ -19,7 +19,7 @@
19
19
  #
20
20
 
21
21
  require "win32/process"
22
- require "mixlib/shellout/windows/core_ext"
22
+ require_relative "windows/core_ext"
23
23
 
24
24
  module Mixlib
25
25
  class ShellOut
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.7
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-07-30 00:00:00.000000000 Z
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