$ 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |