1
0
mirror of https://github.com/safiire/n65.git synced 2024-12-12 00:29:03 +00:00
n65/Rakefile

13 lines
250 B
Ruby
Raw Normal View History

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