-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathRakefile
44 lines (38 loc) · 1.02 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
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
require 'rake/testtask'
desc 'Default: run tests for all rails\' versions.'
if !ENV["APPRAISAL_INITIALIZED"]
task default: [:setup, :appraisal]
end
task :setup do
system "cd test/dummy && rake db:migrate && rake db:test:prepare"
end
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
Rake::TestTask.new(:api_test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.test_files = FileList['test/**/*_test.rb'].exclude(/navigation_test.rb/)
t.verbose = true
t.options = '-- -api-only'
end
begin
require 'rdoc/task'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Merit'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.md')
rdoc.rdoc_files.include('lib/**/*.rb')
end
rescue LoadError
puts 'This platform does not support RDocTask'
end