Repository URL to install this package:
|
Version:
0.1.3 ▾
|
wtflogger
/
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 :default => :spec