From af2b187a9b7856951317e5de06c62f721e40522d Mon Sep 17 00:00:00 2001 From: danielsdeleo Date: Mon, 19 Jan 2015 10:37:46 -0800 Subject: Add desc to rake tasks so you can see them in rake -T --- Rakefile | 3 +++ 1 file changed, 3 insertions(+) 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 -- cgit v1.2.1