forked from slim-template/slim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
53 lines (45 loc) · 1.1 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
48
49
50
51
52
53
begin
require 'bundler'
Bundler::GemHelper.install_tasks
rescue Exception => e
end
require 'rake/testtask'
desc 'Run Slim benchmarks! (Default :iterations is 1000)'
task :bench, :iterations, :slow do |t, args|
ruby("benchmarks/run.rb #{args[:slow]} #{args[:iterations]}")
end
Rake::TestTask.new(:test) do |t|
t.libs << 'lib' << 'test'
t.pattern = 'test/slim/**/test_*.rb'
t.verbose = true
end
Rake::TestTask.new(:integration) do |t|
t.libs << 'lib' << 'test'
t.pattern = 'test/integration/**/test_*.rb'
t.verbose = true
end
begin
require 'rcov/rcovtask'
Rcov::RcovTask.new do |t|
t.libs << 'lib' << 'test'
t.pattern = 'test/**/test_*.rb'
t.verbose = true
end
rescue LoadError
task :rcov do
abort "RCov is not available. In order to run rcov, you must: gem install rcov"
end
end
begin
require 'yard'
YARD::Rake::YardocTask.new do |t|
t.files = %w(lib/**/*.rb)
end
rescue LoadError
task :yard do
abort "YARD is not available. In order to run yard, you must: gem install yard"
end
end
desc "Generate Documentation"
task :doc => :yard
task :default => 'test'