linux_dsm_epyc7002/synology/synoconfigs-spec/Rakefile
AuxXxilium 5fa3ea047a init: add dsm gpl source
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
2024-07-05 18:00:04 +02:00

22 lines
485 B
Ruby

require 'rake/testtask'
task :default => [:help]
task :help do
puts <<-HELP
Options:
rake help This help
rake test Verify all configs
rake test TEST="CONFIG_SYNO_FEATURES.rb" Verify specified key only
HELP
end
Rake::TestTask.new(:test) do |t|
t.libs << 'lib/'
t.pattern = '*.rb'
t.warning = ENV['warning'] ? true : false
t.verbose = ENV['verbose'] ? true : false
end