rex/Rakefile

11 lines
182 B
Ruby
Raw Permalink Normal View History

2023-10-27 14:53:56 +02:00
# frozen_string_literal: true
require "bundler/gem_tasks"
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)
require "standard/rake"
task default: %i[spec standard]