1
0
Fork 0
mirror of https://github.com/ms-ati/docile synced 2023-03-27 23:21:52 -04:00
docile/Rakefile
Marc Siegel 4f258fab7a Remove support for EOL Rubies (< 2.6)
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
2021-05-04 10:55:36 -04:00

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")