summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index f89acbb..209d056 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,6 +15,18 @@ task :pedant do
require File.expand_path('spec/run_oc_pedant')
end
+desc "run pedant with CHEF_FS set"
+task :cheffs do
+ ENV['CHEF_FS'] = "yes"
+ require File.expand_path('spec/run_oc_pedant')
+end
+
+desc "run pedant with FILE_STORE set"
+task :filestore do
+ ENV['FILE_STORE'] = "yes"
+ require File.expand_path('spec/run_oc_pedant')
+end
+
desc "run oc pedant"
task :oc_pedant do
require File.expand_path('spec/run_oc_pedant')