From 322c25702bca9a9f39c8f466eb419a31b4ad2849 Mon Sep 17 00:00:00 2001 From: Guilhem Lettron Date: Wed, 7 May 2014 11:22:25 +0200 Subject: [PATCH] Fix foodcritic As we are using "lazy", we are only compatible with chef >= 11.6.0 --- Rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 9fe7e48..dae01d4 100644 --- a/Rakefile +++ b/Rakefile @@ -17,7 +17,8 @@ namespace :style do FoodCritic::Rake::LintTask.new(:chef) do |t| t.options = { fail_tags: ['any'], - tags: ['~FC003'] + tags: ['~FC003'], + chef_version: '11.6.0' } end rescue LoadError -- 2.47.3