Rakefile in rumble-0.7.0 vs Rakefile in rumble-0.8.0

- old
+ new

@@ -1,8 +1,8 @@ # frozen_string_literal: true -# Copyright (c) 2018-2022 Yegor Bugayenko +# Copyright (c) 2018-2024 Yegor Bugayenko # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell @@ -31,27 +31,24 @@ def version Gem::Specification.load(Dir['*.gemspec'].first).version end -task default: %i[clean test features rubocop copyright] +task default: %i[clean test features rubocop yard copyright] require 'rake/testtask' desc 'Run all unit tests' Rake::TestTask.new(:test) do |test| Rake::Cleaner.cleanup_files(['coverage']) test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = false end -require 'rdoc/task' -desc 'Build RDoc documentation' -Rake::RDocTask.new do |rdoc| - rdoc.rdoc_dir = 'rdoc' - rdoc.title = "#{name} #{version}" - rdoc.rdoc_files.include('README*') - rdoc.rdoc_files.include('lib/**/*.rb') +require 'yard' +desc 'Build Yard documentation' +YARD::Rake::YardocTask.new do |t| + t.files = ['lib/**/*.rb'] end require 'rubocop/rake_task' desc 'Run RuboCop on all directories' RuboCop::RakeTask.new(:rubocop) do |task|