cpi-feed/Rakefile

12 lines
173 B
Ruby
Raw Normal View History

2019-12-31 15:12:30 +00:00
# frozen_string_literal: true
2017-05-14 17:01:29 +00:00
begin
require 'rubocop/rake_task'
rescue LoadError => e
warn e
end
RuboCop::RakeTask.new if defined?(RuboCop)
task default: %i[rubocop]