diff options
author | Chris Doherty <cdoherty@chef.io> | 2015-11-10 11:22:25 -0800 |
---|---|---|
committer | Chris Doherty <cdoherty@chef.io> | 2015-11-10 15:10:17 -0800 |
commit | 0ff36efafb6c4fa9d5cd7d3e81b7bbcae5d34144 (patch) | |
tree | ac938e1b545fc94e72b37bbe629847cad224b72d /Rakefile | |
parent | 5205839b26a804ce0016c5935d11a4699d90cbda (diff) | |
download | chef-zero-0ff36efafb6c4fa9d5cd7d3e81b7bbcae5d34144.tar.gz |
Add :cheffs and :filestore targets to Rakefile.
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -15,6 +15,16 @@ task :pedant do require File.expand_path('spec/run_oc_pedant') end +task :cheffs do + ENV['CHEF_FS'] = "yes" + require File.expand_path('spec/run_oc_pedant') +end + +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') |