forked from stas/jsonapi.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
34 lines (30 loc) · 832 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
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'yaml'
require 'yardstick'
desc('Documentation stats and measurements')
task('qa:docs') do
yaml = YAML.load_file(File.expand_path('../.yardstick.yml', __FILE__))
config = Yardstick::Config.coerce(yaml)
measure = Yardstick.measure(config)
measure.puts
coverage = Yardstick.round_percentage(measure.coverage * 100)
exit(1) if coverage < config.threshold
end
desc('Codestyle check and linter')
RuboCop::RakeTask.new('qa:code') do |task|
task.fail_on_error = true
task.patterns = [
'lib/**/*.rb',
'spec/**/*.rb'
]
end
desc('Run CI QA tasks')
if ENV['RAILS_VERSION'].to_s.include?('4')
task(qa: ['qa:docs'])
else
task(qa: ['qa:docs', 'qa:code'])
end
RSpec::Core::RakeTask.new(spec: :qa)
task(default: :spec)