chef-bin 15.14.0 → 15.17.4
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/lib/chef-bin/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dcee09702a01fd75445b9f37a6871310a4d71e5ec02916f0758eb852428f296
|
4
|
+
data.tar.gz: 95421d0d16211de0b890c26eed5463daa96e1e6069f2d0841b0c8e00c558fd4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f480a6ec3b97113bfa3cad2923842cef3afcef893b8e36b1a0ee98ac05e58c91d59ea035e6d7b30ebf4b7d209648eef7fd66b1afc703dcd2abaf8d11b4b521c
|
7
|
+
data.tar.gz: 012ae234a990e086322e09d03126a720b7a2f84041294541f4ee79142fac5e5d2389e09b4afbabffc53d6d4b06a0f346d78ba55984588ded5b5dcab78817d693
|
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/lib/chef-bin/version.rb
CHANGED
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.17.4
|
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-04-16 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.17.4
|
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.17.4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
rubygems_version: 3.0.3
|
87
|
+
rubygems_version: 3.0.3.1
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: Chef-branded binstubs for chef-client
|