cookbook-openstack-network/Rakefile

40 lines
789 B
Ruby

task default: ["test"]
task :test => [:lint, :style, :unit]
desc "Bundler preparation"
task :bundler_prep do
mkdir_p '.bundle'
sh %{bundle install --path=.bundle --jobs 1 --retry 3 --verbose}
end
desc "Bershelf preparation"
task :berks_prep => :bundler_prep do
sh %{bundle exec berks vendor}
end
desc "Foodcritic linting"
task :lint => :bundler_prep do
sh %{bundle exec foodcritic --epic-fail any --tags ~FC003 --tags ~FC023 .}
end
desc "Rubocop style checking"
task :style => :bundler_prep do
sh %{bundle exec rubocop}
end
desc "Unit testing"
task :unit => :berks_prep do
sh %{bundle exec rspec --format documentation}
end
desc "Clean up working directory"
task :clean do
rm_rf [
'.bundle',
'berks-cookbooks',
'Gemfile.lock',
'Berksfile.lock'
]
end