chef-config 16.5.77 → 16.9.16

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: be09ac190045e0d04778b9d2121594585ab1e56bb6581ff0dfe5ff1591764141
4
- data.tar.gz: 77fad1d3fb02f4de4e8442bfa0feea9c5afc659e289541e1984cc244f4cf6794
3
+ metadata.gz: 71123aa8baa7e158038a6776c94ccb3b8b874f8860ecae706e7afcc85575f0d0
4
+ data.tar.gz: f92c8aeacaebe4f46b97dd6f9d5eb5ca6a2c75e7488b723621345078a5df1513
5
5
  SHA512:
6
- metadata.gz: e507e5b152b916aa72aac2ce937daab4af31c356cbb9f83a7eaf71f9a1a3df9ba7f473990617983b5277a8351729432d41121094d4b0da524933230c92d80f24
7
- data.tar.gz: ec00b7ea3951fa346a0d97123e06edb3b724322558085bd263817412c0fa3f3556a97c593529c23964dc48843316392768a7e9c58554e3394e7913eb517e0ac2
6
+ metadata.gz: 9235c7f26d362949e4bffc09d626536d272782d0c05945cafccb31c414647830ace4917bf24ea0a6d7abdf69bee13235a7f5e7c0cb4d24d7878afa613e6edd8d
7
+ data.tar.gz: 20e1cfcafe2a6ffe8b66e5805bc50eb6bf8034619be893d6090fe92b21f35e18971cf896f9fadaafd0cd86f522d29dbec6684c94789dc740d0fd581ddf1c03fd
@@ -8,10 +8,20 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Adam Jacob"]
9
9
  spec.email = ["adam@chef.io"]
10
10
 
11
- spec.summary = %q{Chef's default configuration and config loading}
11
+ spec.summary = %q{Chef Infra's default configuration and config loading library}
12
12
  spec.homepage = "https://github.com/chef/chef"
13
13
  spec.license = "Apache-2.0"
14
14
 
15
+ spec.required_ruby_version = ">= 2.6.0"
16
+
17
+ spec.metadata = {
18
+ "bug_tracker_uri" => "https://github.com/chef/chef/issues",
19
+ "changelog_uri" => "https://github.com/chef/chef/blob/master/CHANGELOG.md",
20
+ "documentation_uri" => "https://github.com/chef/chef/tree/master/chef-config/README.md",
21
+ "homepage_uri" => "https://github.com/chef/chef/tree/master/chef-config",
22
+ "source_code_uri" => "https://github.com/chef/chef/tree/master/chef-config",
23
+ }
24
+
15
25
  spec.require_paths = ["lib"]
16
26
 
17
27
  spec.add_dependency "chef-utils", "= #{ChefConfig::VERSION}"
@@ -21,12 +31,6 @@ Gem::Specification.new do |spec|
21
31
  spec.add_dependency "addressable"
22
32
  spec.add_dependency "tomlrb", "~> 1.2"
23
33
 
24
- spec.add_development_dependency "rake"
25
-
26
- %w{rspec-core rspec-expectations rspec-mocks}.each do |rspec|
27
- spec.add_development_dependency(rspec, "~> 3.2")
28
- end
29
-
30
34
  spec.files = %w{Rakefile LICENSE} + Dir.glob("*.gemspec") +
31
35
  Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
32
36
 
@@ -20,6 +20,7 @@ module ChefConfig
20
20
  module Mixin
21
21
  module DotD
22
22
  # Find available configuration files in a `.d/` style include directory.
23
+ # Make sure we exclude anything that's not a file so we avoid directories ending in .rb (just in case)
23
24
  #
24
25
  # @api internal
25
26
  # @param path [String] Base .d/ path to load from.
@@ -20,8 +20,16 @@ module ChefConfig
20
20
  module Mixin
21
21
  module FuzzyHostnameMatcher
22
22
 
23
+ #
24
+ # Check to see if a hostname matches a match string. Used to see if hosts fall under our no_proxy config
25
+ #
26
+ # @param [String] hostname the hostname to check
27
+ # @param [String] matches the pattern to match
28
+ #
29
+ # @return [Boolean]
30
+ #
23
31
  def fuzzy_hostname_match_any?(hostname, matches)
24
- if (!hostname.nil?) && (!matches.nil?)
32
+ if hostname && matches
25
33
  return matches.to_s.split(/\s*,\s*/).compact.any? do |m|
26
34
  fuzzy_hostname_match?(hostname, m)
27
35
  end
@@ -15,5 +15,5 @@
15
15
 
16
16
  module ChefConfig
17
17
  CHEFCONFIG_ROOT = File.expand_path("..", __dir__)
18
- VERSION = "16.5.77".freeze
18
+ VERSION = "16.9.16".freeze
19
19
  end
@@ -195,8 +195,8 @@ module ChefConfig
195
195
  message = ""
196
196
  message << "You have invalid ruby syntax in your config file #{config_file_path}\n\n"
197
197
  message << "#{e.class.name}: #{e.message}\n"
198
- if file_line = e.message[/#{Regexp.escape(config_file_path)}:[\d]+/]
199
- line = file_line[/:([\d]+)$/, 1].to_i
198
+ if file_line = e.message[/#{Regexp.escape(config_file_path)}:\d+/]
199
+ line = file_line[/:(\d+)$/, 1].to_i
200
200
  message << highlight_config_error(config_file_path, line)
201
201
  end
202
202
  raise ChefConfig::ConfigurationError, message
@@ -206,7 +206,7 @@ module ChefConfig
206
206
  filtered_trace = e.backtrace.grep(/#{Regexp.escape(config_file_path)}/)
207
207
  filtered_trace.each { |bt_line| message << " " << bt_line << "\n" }
208
208
  unless filtered_trace.empty?
209
- line_nr = filtered_trace.first[/#{Regexp.escape(config_file_path)}:([\d]+)/, 1]
209
+ line_nr = filtered_trace.first[/#{Regexp.escape(config_file_path)}:(\d+)/, 1]
210
210
  message << highlight_config_error(config_file_path, line_nr.to_i)
211
211
  end
212
212
  raise ChefConfig::ConfigurationError, message
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: 16.5.77
4
+ version: 16.9.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Jacob
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-28 00:00:00.000000000 Z
11
+ date: 2021-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef-utils
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 16.5.77
19
+ version: 16.9.16
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 16.5.77
26
+ version: 16.9.16
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: mixlib-shellout
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -106,62 +106,6 @@ dependencies:
106
106
  - - "~>"
107
107
  - !ruby/object:Gem::Version
108
108
  version: '1.2'
109
- - !ruby/object:Gem::Dependency
110
- name: rake
111
- requirement: !ruby/object:Gem::Requirement
112
- requirements:
113
- - - ">="
114
- - !ruby/object:Gem::Version
115
- version: '0'
116
- type: :development
117
- prerelease: false
118
- version_requirements: !ruby/object:Gem::Requirement
119
- requirements:
120
- - - ">="
121
- - !ruby/object:Gem::Version
122
- version: '0'
123
- - !ruby/object:Gem::Dependency
124
- name: rspec-core
125
- requirement: !ruby/object:Gem::Requirement
126
- requirements:
127
- - - "~>"
128
- - !ruby/object:Gem::Version
129
- version: '3.2'
130
- type: :development
131
- prerelease: false
132
- version_requirements: !ruby/object:Gem::Requirement
133
- requirements:
134
- - - "~>"
135
- - !ruby/object:Gem::Version
136
- version: '3.2'
137
- - !ruby/object:Gem::Dependency
138
- name: rspec-expectations
139
- requirement: !ruby/object:Gem::Requirement
140
- requirements:
141
- - - "~>"
142
- - !ruby/object:Gem::Version
143
- version: '3.2'
144
- type: :development
145
- prerelease: false
146
- version_requirements: !ruby/object:Gem::Requirement
147
- requirements:
148
- - - "~>"
149
- - !ruby/object:Gem::Version
150
- version: '3.2'
151
- - !ruby/object:Gem::Dependency
152
- name: rspec-mocks
153
- requirement: !ruby/object:Gem::Requirement
154
- requirements:
155
- - - "~>"
156
- - !ruby/object:Gem::Version
157
- version: '3.2'
158
- type: :development
159
- prerelease: false
160
- version_requirements: !ruby/object:Gem::Requirement
161
- requirements:
162
- - - "~>"
163
- - !ruby/object:Gem::Version
164
- version: '3.2'
165
109
  description:
166
110
  email:
167
111
  - adam@chef.io
@@ -193,7 +137,12 @@ files:
193
137
  homepage: https://github.com/chef/chef
194
138
  licenses:
195
139
  - Apache-2.0
196
- metadata: {}
140
+ metadata:
141
+ bug_tracker_uri: https://github.com/chef/chef/issues
142
+ changelog_uri: https://github.com/chef/chef/blob/master/CHANGELOG.md
143
+ documentation_uri: https://github.com/chef/chef/tree/master/chef-config/README.md
144
+ homepage_uri: https://github.com/chef/chef/tree/master/chef-config
145
+ source_code_uri: https://github.com/chef/chef/tree/master/chef-config
197
146
  post_install_message:
198
147
  rdoc_options: []
199
148
  require_paths:
@@ -202,15 +151,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
202
151
  requirements:
203
152
  - - ">="
204
153
  - !ruby/object:Gem::Version
205
- version: '0'
154
+ version: 2.6.0
206
155
  required_rubygems_version: !ruby/object:Gem::Requirement
207
156
  requirements:
208
157
  - - ">="
209
158
  - !ruby/object:Gem::Version
210
159
  version: '0'
211
160
  requirements: []
212
- rubygems_version: 3.1.2
161
+ rubygems_version: 3.1.4
213
162
  signing_key:
214
163
  specification_version: 4
215
- summary: Chef's default configuration and config loading
164
+ summary: Chef Infra's default configuration and config loading library
216
165
  test_files: []