chef-bin 15.11.8 → 15.16.2
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/Rakefile +3 -1
- data/bin/chef-apply +0 -0
- data/bin/chef-client +0 -0
- data/bin/chef-resource-inspector +0 -0
- data/bin/chef-service-manager +0 -0
- data/bin/chef-shell +0 -0
- data/bin/chef-solo +0 -0
- data/bin/chef-windows-service +0 -0
- data/chef-bin.gemspec +1 -2
- data/lib/chef-bin/version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e56a667981f698d3748b0950563d32d9cc0abc084852a750e013db246da69b1
|
4
|
+
data.tar.gz: f7a36c84e928601e1b00f74e656e26f7ad71af4f5737e58630e4ed373f867195
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67d3600c896a80509bc74ea9dc9606d4790c33e7c17ba1d19e68c60887b5c4d0d599f9f8ae632d0a753066a12dc1aa92470eaa5355db6d755ef6cbce0a322a93
|
7
|
+
data.tar.gz: 8406e41889adeec616e8f7ec0dd38db913b6e35c760f5d996db986e37efa3fcdd26947b1efadbcf19155d048ee8398160935806c16aec686f1e7584e12f29a2b
|
data/Rakefile
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# we need to force the install in order to overwrite the binstubs from
|
2
2
|
# old chef gems.
|
3
3
|
|
4
|
+
require "bundler/gem_helper"
|
5
|
+
|
4
6
|
Bundler::GemHelper.install_tasks
|
5
7
|
|
6
8
|
# this is necessary to use to overwrite any chef-14 or earlier era gem which has the bin files in
|
@@ -8,7 +10,7 @@ Bundler::GemHelper.install_tasks
|
|
8
10
|
desc "force install the chef-bin gem"
|
9
11
|
task "install:force" do
|
10
12
|
sh "gem build -V chef-bin.gemspec"
|
11
|
-
built_gem_path = Dir["chef-bin-*.gem"].
|
13
|
+
built_gem_path = Dir["chef-bin-*.gem"].max_by { |f| File.mtime(f) }
|
12
14
|
FileUtils.mkdir_p("pkg") unless Dir.exist?("pkg")
|
13
15
|
FileUtils.mv(built_gem_path, "pkg")
|
14
16
|
sh "gem install -f pkg/#{built_gem_path}"
|
data/bin/chef-apply
CHANGED
File without changes
|
data/bin/chef-client
CHANGED
File without changes
|
data/bin/chef-resource-inspector
CHANGED
File without changes
|
data/bin/chef-service-manager
CHANGED
File without changes
|
data/bin/chef-shell
CHANGED
File without changes
|
data/bin/chef-solo
CHANGED
File without changes
|
data/bin/chef-windows-service
CHANGED
File without changes
|
data/chef-bin.gemspec
CHANGED
data/lib/chef-bin/version.rb
CHANGED
@@ -20,8 +20,8 @@
|
|
20
20
|
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
21
21
|
|
22
22
|
module ChefBin
|
23
|
-
CHEFBIN_ROOT = File.expand_path("
|
24
|
-
VERSION = "15.
|
23
|
+
CHEFBIN_ROOT = File.expand_path("..", __dir__)
|
24
|
+
VERSION = "15.16.2".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: 15.
|
4
|
+
version: 15.16.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-25 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: 15.
|
19
|
+
version: 15.16.2
|
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: 15.
|
26
|
+
version: 15.16.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|