1
0
mirror of https://github.com/safiire/n65.git synced 2025-01-20 22:29:50 +00:00
n65/Rakefile

14 lines
274 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-03-04 17:10:27 -08:00
require 'bundler/gem_tasks'
require 'rake/testtask'
Rake::TestTask.new do |t|
t.pattern = 'test/test*.rb'
end
2015-03-31 02:40:12 -07:00
## Check the syntax of all ruby files
task :syntax do
sh 'find . -name *.rb -type f -exec ruby -c {} \; -exec echo {} \;'
end