mirror of
https://github.com/safiire/n65.git
synced 2024-12-12 00:29:03 +00:00
14 lines
274 B
Ruby
14 lines
274 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'bundler/gem_tasks'
|
|
require 'rake/testtask'
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.pattern = 'test/test*.rb'
|
|
end
|
|
|
|
## Check the syntax of all ruby files
|
|
task :syntax do
|
|
sh 'find . -name *.rb -type f -exec ruby -c {} \; -exec echo {} \;'
|
|
end
|