summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanielsdeleo <dan@getchef.com>2015-01-19 10:37:46 -0800
committerdanielsdeleo <dan@getchef.com>2015-01-19 10:37:46 -0800
commitaf2b187a9b7856951317e5de06c62f721e40522d (patch)
treecd245b38fe0d0876f0e4f11053eeb35222c3096b
parentcb821526aecd1a0b0c15b84e3549c3f568a73972 (diff)
downloadchef-zero-af2b187a9b7856951317e5de06c62f721e40522d.tar.gz
Add desc to rake tasks so you can see them in rake -T
-rw-r--r--Rakefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 3a3eb96..209b5df 100644
--- a/Rakefile
+++ b/Rakefile
@@ -5,14 +5,17 @@ require 'chef_zero/version'
task :default => :pedant
+desc "run specs"
task :spec do
system('rspec spec/*_spec.rb')
end
+desc "run pedant"
task :pedant do
require File.expand_path('spec/run_pedant')
end
+desc "run oc pedant"
task :oc_pedant do
require File.expand_path('spec/run_oc_pedant')
end