linux-baseline/Rakefile

27 lines
499 B
Ruby
Raw Normal View History

2016-02-16 11:38:48 +00:00
#!/usr/bin/env rake
2014-06-22 13:00:34 +00:00
# encoding: utf-8
2016-02-16 11:38:48 +00:00
require 'rake/testtask'
require 'rubocop/rake_task'
2014-06-05 08:50:37 +00:00
# Rubocop
desc 'Run Rubocop lint checks'
task :rubocop do
RuboCop::RakeTask.new
end
2016-02-16 11:38:48 +00:00
# lint the project
desc 'Run robocop linter'
task lint: [:rubocop]
2016-02-16 11:38:48 +00:00
# run tests
task default: [:lint, 'test:check']
2014-06-05 08:50:37 +00:00
2016-02-16 11:38:48 +00:00
namespace :test do
# run inspec check to verify that the profile is properly configured
task :check do
dir = File.join(File.dirname(__FILE__))
sh("bundle exec inspec check #{dir}")
2014-06-05 08:50:37 +00:00
end
end