-
Notifications
You must be signed in to change notification settings - Fork 215
/
Rakefile
44 lines (39 loc) · 889 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
33
34
35
36
37
38
39
40
41
42
43
44
begin
require 'bundler'
Bundler::GemHelper.install_tasks
rescue LoadError
# ignore if bundler does not exist
warn 'Bundler not found'
end
require 'rubygems'
require 'rake/clean'
task default: %i[test rubocop]
desc 'Check with rubocop'
task :rubocop do
begin
require 'rubocop/rake_task'
RuboCop::RakeTask.new
rescue LoadError
warn 'rubocop not found'
end
end
desc 'Run tests'
task :test, :target do |_, argv|
if argv[:target].nil?
ruby('test/run_test.rb')
else
ruby('test/run_test.rb', "--pattern=#{argv[:target]}")
end
end
begin
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ''
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "review #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
rescue LoadError
warn 'rdoc not found'
end