diff options
author | danielsdeleo <dan@getchef.com> | 2015-01-19 10:37:46 -0800 |
---|---|---|
committer | danielsdeleo <dan@getchef.com> | 2015-01-19 10:37:46 -0800 |
commit | af2b187a9b7856951317e5de06c62f721e40522d (patch) | |
tree | cd245b38fe0d0876f0e4f11053eeb35222c3096b /Rakefile | |
parent | cb821526aecd1a0b0c15b84e3549c3f568a73972 (diff) | |
download | chef-zero-af2b187a9b7856951317e5de06c62f721e40522d.tar.gz |
Add desc to rake tasks so you can see them in rake -T
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |