chef-bin 16.4.41 → 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: 652b938ab3b59f2f0bab159beb16d0070c29308b3d0fc649bbdaeacccb79c98c
4
- data.tar.gz: 996187fb77d871e86798e84099612afa3fb38d97fcd4702d9553fee3f62a71ff
3
+ metadata.gz: aa22319ddf728aee6fa2a1a09e21d02b4d799556da53146f95d6dc6e192421c1
4
+ data.tar.gz: 2ac162599aeceaa963f512e4848d0b8c94331839badf4d7af531dd9c7f28342f
5
5
  SHA512:
6
- metadata.gz: 79e47e4fa33af3edff29be3551e59b7c3420f8fcf52644915fd68ef3f825dba0fcf574f210a96f80b08f9e0d08f83df11d699dbe9bf272fe446a79f03c019684
7
- data.tar.gz: ab6fcf135614d3c8ab7694b64672c694e4d11c0bde8e40417d6d1170b3614faf8b2402a65a898c07111ffb595b739ae1766c8150e26aa7036d95bc2137613975
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.4.41".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.4.41
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-08-19 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.4.41
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.4.41
26
+ version: 16.5.64
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement