rake -T is useful

This adds the desc to each rake task so rake -T gives useful information.

Change-Id: I5af5d18361f481c36d853b9fb474c0dcaa942b1a
This commit is contained in:
JJ Asghar 2015-06-04 10:38:28 -05:00
parent 7c43f00c97
commit 126623623e
1 changed files with 5 additions and 0 deletions

View File

@ -2,22 +2,27 @@ task default: ["test"]
task :test => [:lint, :style, :unit]
desc "Vendor the cookbooks in the Berksfile"
task :berks_prep do
sh %{chef exec berks vendor}
end
desc "Run FoodCritic (lint) tests"
task :lint do
sh %{chef exec foodcritic --epic-fail any --tags ~FC003 --tags ~FC023 .}
end
desc "Run RuboCop (style) tests"
task :style do
sh %{chef exec rubocop}
end
desc "Run RSpec (unit) tests"
task :unit => :berks_prep do
sh %{chef exec rspec --format documentation}
end
desc "Remove the berks-cookbooks directory and the Berksfile.lock"
task :clean do
rm_rf [
'berks-cookbooks',