forked from jekyll/classifier-reborn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
47 lines (41 loc) · 1.05 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rdoc/task'
require 'bundler/gem_tasks'
desc 'Default Task'
task default: [:test]
# Run the unit tests
desc 'Run all unit tests'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.pattern = 'test/*/*_test.rb'
t.verbose = true
end
# Run benchmarks
desc 'Run all benchmarks'
Rake::TestTask.new(:bench) do |t|
t.libs << 'lib'
t.pattern = 'test/*/*_benchmark.rb'
t.verbose = true
end
# Run validations
desc 'Run all validations'
Rake::TestTask.new(:validate) do |t|
t.libs << 'lib'
t.pattern = 'test/*/*_validation.rb'
t.verbose = true
end
# Make a console, useful when working on tests
desc 'Generate a test console'
task :console do
verbose(false) { sh "irb -I lib/ -r 'classifier-reborn'" }
end
# Genereate the RDoc documentation
desc 'Create documentation'
Rake::RDocTask.new(:doc) do |rdoc|
rdoc.title = 'Ruby Classifier - Bayesian and LSI classification library'
rdoc.rdoc_dir = 'html'
rdoc.rdoc_files.include('README.markdown')
rdoc.rdoc_files.include('lib/**/*.rb')
end