-
Notifications
You must be signed in to change notification settings - Fork 58
/
Rakefile
36 lines (32 loc) · 913 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
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'yaml'
require 'yardstick'
# rubocop:disable Rails/RakeEnvironment
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
# rubocop:enable Rails/RakeEnvironment
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)
task(default: %w[qa spec])