blob: 2ce67cef9931dfb7b1530b93dda8fa966a46a87c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'rake/testtask'
require 'yard'
YARD::Rake::YardocTask.new do |t|
t.files = ['component_manager.rb', 'entity_manager.rb', 'felflame.rb']
t.options = ['--output-dir', './docs']
t.stats_options = ['--list-undoc']
end
Rake::TestTask.new do |t|
t.pattern = "tests/**/*_test.rb"
end
|