chef-cli 3.1.1 → 3.1.3
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/Gemfile +2 -8
- data/lib/chef-cli/command/generator_commands/cookbook.rb +1 -1
- data/lib/chef-cli/generator.rb +1 -1
- data/lib/chef-cli/skeletons/code_generator/templates/default/inspec_default_test.rb.erb +1 -1
- data/lib/chef-cli/version.rb +1 -1
- data/spec/unit/command/generator_commands/cookbook_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7aef40ff73580003cb8253f756a4da57c36c0fa7266e9df50fa5b3ff877b2c2b
|
|
4
|
+
data.tar.gz: a041fb63c6b24c45ddc3f90e40f8abf1f876cdeb3655ce1c2be09d87f17eb42a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0361a3d6fe8f08665baebc4b69e931f6ed1546288d705c5cb2e09ce208712674afbb2ff07e4c6a45a1e9db1e5cb05b5788d2171af6280b594ed50f3a940335cb
|
|
7
|
+
data.tar.gz: d731fea15f7a1996687719a7f804e475020cef4d52f2da38b852ddd2e43c06f0493571cdb373ec23e3220d2fa1ac1e51aed7edf95cecf539a0c39a747f23b92b
|
data/Gemfile
CHANGED
|
@@ -2,12 +2,6 @@ source "https://rubygems.org"
|
|
|
2
2
|
|
|
3
3
|
gemspec
|
|
4
4
|
|
|
5
|
-
group :docs do
|
|
6
|
-
gem "yard"
|
|
7
|
-
gem "redcarpet"
|
|
8
|
-
gem "github-markup"
|
|
9
|
-
end
|
|
10
|
-
|
|
11
5
|
group :test do
|
|
12
6
|
gem "rake"
|
|
13
7
|
gem "rspec", "~> 3.8"
|
|
@@ -15,17 +9,17 @@ group :test do
|
|
|
15
9
|
gem "rspec-mocks", "~> 3.8"
|
|
16
10
|
gem "cookstyle", "=7.7.2" # this forces dependabot PRs to open which triggers cookstyle CI on the chef generate command
|
|
17
11
|
gem "chefstyle", "=1.6.2"
|
|
18
|
-
gem "test-kitchen", "
|
|
12
|
+
gem "test-kitchen", ">= 2.11.1"
|
|
19
13
|
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.6")
|
|
20
14
|
gem "chef-zero", "~> 14"
|
|
21
15
|
gem "chef", "~> 15"
|
|
16
|
+
gem "chef-utils", "=16.6.14"
|
|
22
17
|
end
|
|
23
18
|
end
|
|
24
19
|
|
|
25
20
|
group :development do
|
|
26
21
|
gem "pry"
|
|
27
22
|
gem "pry-byebug"
|
|
28
|
-
gem "pry-stack_explorer", "~> 0.4.0"
|
|
29
23
|
gem "rb-readline"
|
|
30
24
|
end
|
|
31
25
|
|
|
@@ -207,7 +207,7 @@ module ChefCLI
|
|
|
207
207
|
if !@cookbook_name_or_path
|
|
208
208
|
@params_valid = false
|
|
209
209
|
elsif File.basename(@cookbook_name_or_path).include?("-")
|
|
210
|
-
msg("Hyphens are discouraged in cookbook names as they may cause problems with custom resources. See https://docs.chef.io/ctl_chef/#chef-generate-cookbook for more information.")
|
|
210
|
+
msg("Hyphens are discouraged in cookbook names as they may cause problems with custom resources. See https://docs.chef.io/workstation/ctl_chef/#chef-generate-cookbook for more information.")
|
|
211
211
|
end
|
|
212
212
|
|
|
213
213
|
if config[:berks] && config[:policy]
|
data/lib/chef-cli/generator.rb
CHANGED
|
@@ -150,7 +150,7 @@ module ChefCLI
|
|
|
150
150
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
151
151
|
EOH
|
|
152
152
|
else
|
|
153
|
-
raise ArgumentError, "Invalid generator.license setting: #{license}. See available licenses at https://docs.chef.io/ctl_chef/#chef-generate-cookbook"
|
|
153
|
+
raise ArgumentError, "Invalid generator.license setting: #{license}. See available licenses at https://docs.chef.io/workstation/ctl_chef/#chef-generate-cookbook"
|
|
154
154
|
end
|
|
155
155
|
if comment
|
|
156
156
|
# Ensure there's no trailing whitespace
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# InSpec test for recipe <%= cookbook_name %>::<%= recipe_name %>
|
|
2
2
|
|
|
3
|
-
# The InSpec reference, with examples and extensive documentation, can be
|
|
3
|
+
# The Chef InSpec reference, with examples and extensive documentation, can be
|
|
4
4
|
# found at https://docs.chef.io/inspec/resources/
|
|
5
5
|
|
|
6
6
|
unless os.windows?
|
data/lib/chef-cli/version.rb
CHANGED
|
@@ -129,7 +129,7 @@ describe ChefCLI::Command::GeneratorCommands::Cookbook do
|
|
|
129
129
|
|
|
130
130
|
it "warns if a hyphenated cookbook name is passed" do
|
|
131
131
|
expect(with_argv(%w{my-cookbook}).run).to eq(0)
|
|
132
|
-
message = "Hyphens are discouraged in cookbook names as they may cause problems with custom resources. See https://docs.chef.io/ctl_chef/#chef-generate-cookbook for more information."
|
|
132
|
+
message = "Hyphens are discouraged in cookbook names as they may cause problems with custom resources. See https://docs.chef.io/workstation/ctl_chef/#chef-generate-cookbook for more information."
|
|
133
133
|
expect(stdout_io.string).to include(message)
|
|
134
134
|
end
|
|
135
135
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chef Software, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02
|
|
11
|
+
date: 2021-03-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-cli
|