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 +4 -4
- data/LICENSE +0 -0
- data/Rakefile +0 -0
- data/chef-config.gemspec +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/chef-config.rb +0 -0
- data/lib/chef-config/.DS_Store +0 -0
- data/lib/chef-config/config.rb +13 -13
- data/lib/chef-config/exceptions.rb +2 -2
- data/lib/chef-config/fips.rb +1 -1
- data/lib/chef-config/logger.rb +0 -0
- data/lib/chef-config/mixin/credentials.rb +1 -1
- data/lib/chef-config/mixin/dot_d.rb +1 -1
- data/lib/chef-config/mixin/fuzzy_hostname_matcher.rb +0 -0
- data/lib/chef-config/path_helper.rb +3 -3
- data/lib/chef-config/version.rb +1 -1
- data/lib/chef-config/windows.rb +0 -0
- data/lib/chef-config/workstation_config_loader.rb +7 -7
- data/spec/spec_helper.rb +0 -0
- data/spec/unit/config_spec.rb +0 -0
- data/spec/unit/fips_spec.rb +0 -0
- data/spec/unit/path_helper_spec.rb +0 -0
- data/spec/unit/workstation_config_loader_spec.rb +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15cf8762e25cc78ca11a3fd7d1d1e379814f4e024677feabf462cc33148ed9aa
|
|
4
|
+
data.tar.gz: cf678c279572b54359e996ed01efa545f7b8e0103cc7d2107cfaca5b39b97cfa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22d0fc9b59e9d100c12a6caa58bbee563efc8b2547aa91483b8f9dbc146d34230c2157645e717ca1cf726797bc8cf2a89be5cea03b0f967d2cf3fbc7bd8d1740
|
|
7
|
+
data.tar.gz: 503712cb8b46d59660c223134b49116971c68a419ac09bb564fc9402a8732861f1fad0121076fa111760296ed04ddeb0ea5339e679edbe02d587b70381ed250c
|
data/LICENSE
CHANGED
|
File without changes
|
data/Rakefile
CHANGED
|
File without changes
|
data/chef-config.gemspec
CHANGED
|
File without changes
|
data/lib/.DS_Store
ADDED
|
Binary file
|
data/lib/chef-config.rb
CHANGED
|
File without changes
|
|
Binary file
|
data/lib/chef-config/config.rb
CHANGED
|
@@ -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
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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
|
data/lib/chef-config/fips.rb
CHANGED
data/lib/chef-config/logger.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
#
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
require_relative "windows"
|
|
20
|
+
require_relative "logger"
|
|
21
|
+
require_relative "exceptions"
|
|
22
22
|
|
|
23
23
|
module ChefConfig
|
|
24
24
|
class PathHelper
|
data/lib/chef-config/version.rb
CHANGED
data/lib/chef-config/windows.rb
CHANGED
|
File without changes
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
#
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
data/spec/spec_helper.rb
CHANGED
|
File without changes
|
data/spec/unit/config_spec.rb
CHANGED
|
File without changes
|
data/spec/unit/fips_spec.rb
CHANGED
|
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.
|
|
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-
|
|
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
|