Repository URL to install this package:
|
Version:
0.1.4 ▾
|
wtfalert
/
Rakefile
|
|---|
# frozen_string_literal: true
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new(:rubocop) do |t|
t.options = ['--display-cop-names']
end
task :test => %i[rubocop spec]
task :default => :test