Files
cookbook-openstack-block-st…/Rakefile
Jan Klare 16a6af5000 move from bundler to chefdk
- deprecated Gemfile
- Updated TESTING.md and README.md
- updated Rakefile to use chef exec insted of bundle exec
- replaced Runner with SoloRunner in specs

Change-Id: If3e3b54c9dbaa8bb51164bc85fd93ff5fc54ec4d
2015-04-28 17:56:15 +02:00

27 lines
416 B
Ruby

task default: ["test"]
task :test => [:lint, :style, :unit]
task :berks_prep do
sh %{chef exec berks vendor}
end
task :lint do
sh %{chef exec foodcritic --epic-fail any --tags ~FC003 --tags ~FC023 .}
end
task :style do
sh %{chef exec rubocop}
end
task :unit => :berks_prep do
sh %{chef exec rspec --format documentation}
end
task :clean do
rm_rf [
'berks-cookbooks',
'Berksfile.lock'
]
end