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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
# frozen_string_literal: true
# The default task
desc 'Run the same tasks that the CI build will run'
if RUBY_PLATFORM == 'java'
task default: %w[spec rubocop bundle:audit build]
else
task default: %w[spec rubocop yard bundle:audit build]
end
# Bundler Audit
require 'bundler/audit/task'
Bundler::Audit::Task.new
# Bundler Gem Build
require 'bundler'
require 'bundler/gem_tasks'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
warn e.message
warn 'Run `bundle install` to install missing gems'
exit e.status_code
end
# Make it so that calling `rake release` just calls `rake release:rubygems_push` to
# avoid creating and pushing a new tag.
Rake::Task['release'].clear
desc 'Customized release task to avoid creating a new tag'
task release: 'release:rubygem_push'
CLEAN << 'pkg'
CLOBBER << 'Gemfile.lock'
# RSpec
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
CLEAN << 'coverage'
CLEAN << '.rspec_status'
CLEAN << 'rspec-report.xml'
# Rubocop
require 'rubocop/rake_task'
RuboCop::RakeTask.new
# YARD
unless RUBY_PLATFORM == 'java'
# yard:build
require 'yard'
YARD::Rake::YardocTask.new('yard:build') do |t|
t.files = %w[lib/**/*.rb]
t.stats_options = ['--list-undoc']
end
CLEAN << '.yardoc'
CLEAN << 'doc'
# yard:audit
desc 'Run yardstick to show missing YARD doc elements'
task :'yard:audit' do
sh "yardstick 'lib/**/*.rb'"
end
# yard:coverage
require 'yardstick/rake/verify'
Yardstick::Rake::Verify.new(:'yard:coverage') do |verify|
verify.threshold = 100
verify.require_exact_threshold = false
end
task yard: %i[yard:build yard:audit yard:coverage]
end
|