chef-config 12.7.2 → 12.8.1
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 +201 -201
- data/README.md +4 -4
- data/Rakefile +13 -13
- data/chef-config.gemspec +32 -32
- data/lib/chef-config.rb +20 -20
- data/lib/chef-config/config.rb +935 -920
- data/lib/chef-config/exceptions.rb +26 -26
- data/lib/chef-config/logger.rb +59 -59
- data/lib/chef-config/mixin/dot_d.rb +38 -0
- data/lib/chef-config/package_task.rb +222 -222
- data/lib/chef-config/path_helper.rb +272 -264
- data/lib/chef-config/version.rb +34 -34
- data/lib/chef-config/windows.rb +28 -28
- data/lib/chef-config/workstation_config_loader.rb +182 -178
- data/spec/spec_helper.rb +75 -75
- data/spec/unit/config_spec.rb +843 -843
- data/spec/unit/path_helper_spec.rb +307 -290
- data/spec/unit/workstation_config_loader_spec.rb +366 -289
- metadata +4 -3
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: 12.
|
4
|
+
version: 12.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mixlib-shellout
|
@@ -109,6 +109,7 @@ files:
|
|
109
109
|
- lib/chef-config/config.rb
|
110
110
|
- lib/chef-config/exceptions.rb
|
111
111
|
- lib/chef-config/logger.rb
|
112
|
+
- lib/chef-config/mixin/dot_d.rb
|
112
113
|
- lib/chef-config/package_task.rb
|
113
114
|
- lib/chef-config/path_helper.rb
|
114
115
|
- lib/chef-config/version.rb
|
@@ -138,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
138
139
|
version: '0'
|
139
140
|
requirements: []
|
140
141
|
rubyforge_project:
|
141
|
-
rubygems_version: 2.
|
142
|
+
rubygems_version: 2.5.2
|
142
143
|
signing_key:
|
143
144
|
specification_version: 4
|
144
145
|
summary: Chef's default configuration and config loading
|