-
Notifications
You must be signed in to change notification settings - Fork 109
/
Rakefile
42 lines (34 loc) · 943 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
# frozen_string_literal: true
require 'rdoc/task'
require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rspec/core/rake_task'
require 'yard'
require 'rubocop/rake_task'
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Blueprinter'
rdoc.options << '--line-numbers'
rdoc.rdoc_files.include('README.md')
rdoc.rdoc_files.include('lib/**/*.rb')
end
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = '--pattern spec/**/*_spec.rb --warnings'
end
RuboCop::RakeTask.new
YARD::Rake::YardocTask.new do |t|
t.files = Dir['lib/**/*'].reject do |file|
file.include?('lib/generators')
end
end
Rake::TestTask.new(:benchmarks) do |t|
t.libs.append('lib', 'spec')
t.pattern = 'spec/benchmarks/**/*_test.rb'
t.verbose = false
end
task default: %i[spec rubocop]