chef-bin 16.3.38 → 16.5.64

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: e979318ec327faf1fde2bc72ffafb6f3a0a6e302c270df53e45bb9ae2205baa3
4
- data.tar.gz: 9c8382cf0dcdf0e021d53aca5ed8eb651f464d367363a293d7949c43c8e4081e
3
+ metadata.gz: aa22319ddf728aee6fa2a1a09e21d02b4d799556da53146f95d6dc6e192421c1
4
+ data.tar.gz: 2ac162599aeceaa963f512e4848d0b8c94331839badf4d7af531dd9c7f28342f
5
5
  SHA512:
6
- metadata.gz: e711d3c19b829acae315c49833772c90011b836803376d3e08dd7c12f5ef9718e89ccf20cff4ea24e7ec355f26866442ffd3f9f6b42c3d0da5d85b6502c28aff
7
- data.tar.gz: ec62e44ac1522ada21c51a31c3a3ce237f177d12d5816832515d0061bf570efc9ba10b66f87750cdd91c91d9696b83a5215bc67c1e5006db0029a2edf5f989fc
6
+ metadata.gz: c6cb5751e4f7efdb60d9bdd4e44ab824aad91bef76d1795309e44d926ac90089854ff3dd3a20caa7ab5a4f8375509ba1d0b8fe885d3c6f69d6de9f1fcfb20a76
7
+ data.tar.gz: c87adfcebd73c1db5f4542aacd3906cbe0e388d5c4ae9c13d84f2f23a8d05c0bce982f60683064df55978331d62c1eff592a3741c6a1af2838c35a539a1b5431
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ Bundler::GemHelper.install_tasks
10
10
  desc "force install the chef-bin gem"
11
11
  task "install:force" do
12
12
  sh "gem build -V chef-bin.gemspec"
13
- built_gem_path = Dir["chef-bin-*.gem"].sort_by { |f| File.mtime(f) }.last
13
+ built_gem_path = Dir["chef-bin-*.gem"].max_by { |f| File.mtime(f) }
14
14
  FileUtils.mkdir_p("pkg") unless Dir.exist?("pkg")
15
15
  FileUtils.mv(built_gem_path, "pkg")
16
16
  sh "gem install -f pkg/#{built_gem_path}"
@@ -18,7 +18,7 @@
18
18
  # See the License for the specific language governing permissions and
19
19
  # limitations under the License.
20
20
 
21
- $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
21
+ $:.unshift(File.join(__dir__, "..", "lib"))
22
22
  require "chef/application/apply"
23
23
 
24
24
  Chef::Application::Apply.new.run(enforce_license: true)
@@ -18,7 +18,7 @@
18
18
  # See the License for the specific language governing permissions and
19
19
  # limitations under the License.
20
20
 
21
- $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
21
+ $:.unshift(File.join(__dir__, "..", "lib"))
22
22
  require "chef"
23
23
  require "chef/application/client"
24
24
 
@@ -19,7 +19,7 @@
19
19
 
20
20
  Encoding.default_external = Encoding::UTF_8
21
21
 
22
- $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
22
+ $:.unshift(File.expand_path(File.join(__dir__, "..", "lib")))
23
23
 
24
24
  require "chef/resource_inspector"
25
25
 
@@ -18,16 +18,16 @@
18
18
  # See the License for the specific language governing permissions and
19
19
  # limitations under the License.
20
20
 
21
- $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
21
+ $:.unshift(File.join(__dir__, "..", "lib"))
22
22
  require "chef"
23
23
  require "chef/application/windows_service_manager"
24
- require "chef/dist"
24
+ require "chef-utils/dist" unless defined?(ChefUtils::Dist)
25
25
 
26
26
  if Chef::Platform.windows?
27
27
  chef_client_service = {
28
- service_name: Chef::Dist::CLIENT,
29
- service_display_name: "#{Chef::Dist::PRODUCT} Service",
30
- service_description: "Runs #{Chef::Dist::PRODUCT} on regular, configurable intervals.",
28
+ service_name: ChefUtils::Dist::Infra::CLIENT,
29
+ service_display_name: "#{ChefUtils::Dist::Infra::PRODUCT} Service",
30
+ service_description: "Runs #{ChefUtils::Dist::Infra::PRODUCT} on regular, configurable intervals.",
31
31
  service_file_path: File.expand_path("../chef-windows-service", $PROGRAM_NAME),
32
32
  delayed_start: true,
33
33
  dependencies: ["Winmgmt"],
@@ -24,7 +24,7 @@ require "irb"
24
24
  require "irb/completion"
25
25
  require "irb/ext/save-history"
26
26
 
27
- $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
27
+ $:.unshift(File.expand_path(File.join(__dir__, "..", "lib")))
28
28
 
29
29
  require "chef/shell"
30
30
 
@@ -18,7 +18,7 @@
18
18
  # See the License for the specific language governing permissions and
19
19
  # limitations under the License.
20
20
 
21
- $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
21
+ $:.unshift(File.join(__dir__, "..", "lib"))
22
22
  require "chef/application/solo"
23
23
 
24
24
  Chef::Application::Solo.new.run(enforce_license: true)
@@ -23,7 +23,7 @@
23
23
  # generate will call that file, and will be registered as
24
24
  # a windows service.
25
25
 
26
- $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
26
+ $:.unshift(File.join(__dir__, "..", "lib"))
27
27
  require "chef"
28
28
  require "chef/application/windows_service"
29
29
 
@@ -21,7 +21,7 @@
21
21
 
22
22
  module ChefBin
23
23
  CHEFBIN_ROOT = File.expand_path("..", __dir__)
24
- VERSION = "16.3.38".freeze
24
+ VERSION = "16.5.64".freeze
25
25
  end
26
26
 
27
27
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-bin
3
3
  version: !ruby/object:Gem::Version
4
- version: 16.3.38
4
+ version: 16.5.64
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-07-25 00:00:00.000000000 Z
11
+ date: 2020-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 16.3.38
19
+ version: 16.5.64
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.3.38
26
+ version: 16.5.64
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement