chef-config 15.0.300 → 15.1.36

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: 2b1cc352b49202e48869dc5ac33d7fc5af67e916cdbcb91269c9bdc9726bcd24
4
- data.tar.gz: 63a6968c2ce4979b2ad4fb34ebcef0dd284e8a39acdebed1a71b9af13b4a1964
3
+ metadata.gz: 15cf8762e25cc78ca11a3fd7d1d1e379814f4e024677feabf462cc33148ed9aa
4
+ data.tar.gz: cf678c279572b54359e996ed01efa545f7b8e0103cc7d2107cfaca5b39b97cfa
5
5
  SHA512:
6
- metadata.gz: 5c67c7681d81794f30ed22e683a0f3ca89ed614138841fd1d5bb1e4bcc939bd0dae7d81286081d168a05fb4164403bb9bc963085d925aa3df84df67932640478
7
- data.tar.gz: fd3ef277e0f8963bd5ac16a292765f07f9ef7ffb1304329e46f27f4080a26f78aae70950ef4362df37a28745b3c4dcc51fe44a3929884933e6140d9ae6abcec7
6
+ metadata.gz: 22d0fc9b59e9d100c12a6caa58bbee563efc8b2547aa91483b8f9dbc146d34230c2157645e717ca1cf726797bc8cf2a89be5cea03b0f967d2cf3fbc7bd8d1740
7
+ data.tar.gz: 503712cb8b46d59660c223134b49116971c68a419ac09bb564fc9402a8732861f1fad0121076fa111760296ed04ddeb0ea5339e679edbe02d587b70381ed250c
data/LICENSE CHANGED
File without changes
data/Rakefile CHANGED
File without changes
File without changes
Binary file
File without changes
Binary file
@@ -19,19 +19,19 @@
19
19
  # See the License for the specific language governing permissions and
20
20
  # limitations under the License.
21
21
 
22
- require "mixlib/config"
23
- require "pathname"
24
-
25
- require "chef-config/fips"
26
- require "chef-config/logger"
27
- require "chef-config/windows"
28
- require "chef-config/path_helper"
29
- require "chef-config/mixin/fuzzy_hostname_matcher"
30
-
31
- require "mixlib/shellout"
32
- require "uri"
33
- require "addressable/uri"
34
- require "openssl"
22
+ require "mixlib/config" unless defined?(Mixlib::Config)
23
+ require "pathname" unless defined?(Pathname)
24
+
25
+ require_relative "fips"
26
+ require_relative "logger"
27
+ require_relative "windows"
28
+ require_relative "path_helper"
29
+ require_relative "mixin/fuzzy_hostname_matcher"
30
+
31
+ require "mixlib/shellout" unless defined?(Mixlib::ShellOut::DEFAULT_READ_TIMEOUT)
32
+ require "uri" unless defined?(URI)
33
+ require "addressable/uri" unless defined?(Addressable::URI)
34
+ require "openssl" unless defined?(OpenSSL)
35
35
  require "yaml"
36
36
 
37
37
  module ChefConfig
@@ -15,8 +15,8 @@
15
15
  # limitations under the License.
16
16
  #
17
17
 
18
- require "chef-config/windows"
19
- require "chef-config/logger"
18
+ require_relative "windows"
19
+ require_relative "logger"
20
20
 
21
21
  module ChefConfig
22
22
 
@@ -21,7 +21,7 @@ module ChefConfig
21
21
  def self.fips?
22
22
  if ChefConfig.windows?
23
23
  begin
24
- require "win32/registry"
24
+ require "win32/registry" unless defined?(Win32::Registry)
25
25
  rescue LoadError
26
26
  return false
27
27
  end
File without changes
@@ -16,7 +16,7 @@
16
16
  #
17
17
 
18
18
  require "tomlrb"
19
- require "chef-config/path_helper"
19
+ require_relative "../path_helper"
20
20
 
21
21
  module ChefConfig
22
22
  module Mixin
@@ -14,7 +14,7 @@
14
14
  # See the License for the specific language governing permissions and
15
15
  # limitations under the License.
16
16
 
17
- require "chef-config/path_helper"
17
+ require_relative "../path_helper"
18
18
 
19
19
  module ChefConfig
20
20
  module Mixin
@@ -16,9 +16,9 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- require "chef-config/windows"
20
- require "chef-config/logger"
21
- require "chef-config/exceptions"
19
+ require_relative "windows"
20
+ require_relative "logger"
21
+ require_relative "exceptions"
22
22
 
23
23
  module ChefConfig
24
24
  class PathHelper
@@ -21,7 +21,7 @@
21
21
 
22
22
  module ChefConfig
23
23
  CHEFCONFIG_ROOT = File.expand_path("../..", __FILE__)
24
- VERSION = "15.0.300".freeze
24
+ VERSION = "15.1.36".freeze
25
25
  end
26
26
 
27
27
  #
File without changes
@@ -16,13 +16,13 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- require "chef-config/config"
20
- require "chef-config/exceptions"
21
- require "chef-config/logger"
22
- require "chef-config/path_helper"
23
- require "chef-config/windows"
24
- require "chef-config/mixin/dot_d"
25
- require "chef-config/mixin/credentials"
19
+ require_relative "config"
20
+ require_relative "exceptions"
21
+ require_relative "logger"
22
+ require_relative "path_helper"
23
+ require_relative "windows"
24
+ require_relative "mixin/dot_d"
25
+ require_relative "mixin/credentials"
26
26
 
27
27
  module ChefConfig
28
28
  class WorkstationConfigLoader
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-config
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.0.300
4
+ version: 15.1.36
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Jacob
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-16 00:00:00.000000000 Z
11
+ date: 2019-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout
@@ -158,7 +158,9 @@ files:
158
158
  - LICENSE
159
159
  - Rakefile
160
160
  - chef-config.gemspec
161
+ - lib/.DS_Store
161
162
  - lib/chef-config.rb
163
+ - lib/chef-config/.DS_Store
162
164
  - lib/chef-config/config.rb
163
165
  - lib/chef-config/exceptions.rb
164
166
  - lib/chef-config/fips.rb