Monday, December 3, 2012

foodcritic rake task ~ one that works for me

FoodCritic (a lint tool for your OpsCode Chef cookbooks)
$ gem install foodcritic --no-ri --no-rdoc

Rake Task to get the FoodCritic rolling at your cookbooks
(here cookbook reside in dir 'cookbooks' at the root of directory with Rakefile)
the one at wiki doesn't work for me, but this does

require 'bundler/setup'
require 'foodcritic'
task :default => [:foodcritic]
task :foodcritic do
cookbooks = File.absolute_path(File.join File.dirname(__FILE__), 'cookbooks')
puts 'FoodCritic running...
would criticize if finds anything, not cycnical to blabber otherwise.'
result = FoodCritic::Linter.new.check cookbooks, {}
puts result
fail if result.failed?
end
view raw gistfile1.rb hosted with ❤ by GitHub
_