-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
32 lines (29 loc) · 804 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require 'bundler/setup'
require "bundler/gem_tasks"
Bundler.require(:development)
require 'fileutils'
require "rake/testtask"
# Test Task
Rake::TestTask.new do |t|
t.libs << 'lib' << 'test'
t.test_files = FileList[ARGV[1] ? ARGV[1] : 'test/**/*_test.rb']
t.warning = true
t.verbose = true
end
# require "sdoc"
# RDoc::Task.new do |rdoc|
# rdoc.main = 'README.md'
# rdoc.title = 'Wankel API'
# rdoc.rdoc_dir = 'doc'
#
# rdoc.rdoc_files.include('README.md')
# rdoc.rdoc_files.include('logo.png')
# rdoc.rdoc_files.include('lib/**/*.rb')
# rdoc.rdoc_files.include('ext/**/*.{h,c}')
#
# rdoc.options << '-f' << 'sdoc'
# rdoc.options << '-T' << '42floors'
# rdoc.options << '--charset' << 'utf-8'
# rdoc.options << '--line-numbers'
# rdoc.options << '--github'
# end