Add Rake tasks for cleaning and testing

This commit is contained in:
Gabriel Arazas 2023-10-29 10:38:13 +08:00
parent ad2834cafe
commit 44a71f5fe3
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -1,8 +1,11 @@
# frozen_string_literal: true
require 'rake/clean'
require 'bundler/gem_tasks'
require 'rubocop/rake_task'
require 'rspec/core/rake_task'
RuboCop::RakeTask.new
RSpec::Core::RakeTask.new
task default: :rubocop