mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
4f258fab7a
In this PR: * Temporarily remove all YARD doc config, to be added back after migrating CI to Github Actions, to simplify config and dependencies * Remove all testing and references to < 2.6 Rubies * Simplify JRuby and TruffleRuby testing to latest stable versions NOT in this PR: * Any simplifying code changes that are now possible due to removing support for EOL Rubies Closes #58
12 lines
305 B
Ruby
12 lines
305 B
Ruby
require "rake/clean"
|
|
require "bundler/gem_tasks"
|
|
require "rspec/core/rake_task"
|
|
|
|
# Default task for `rake` is to run rspec
|
|
task :default => [:spec]
|
|
|
|
# Use default rspec rake task
|
|
RSpec::Core::RakeTask.new
|
|
|
|
# Configure `rake clobber` to delete all generated files
|
|
CLOBBER.include("pkg", "doc", "coverage")
|