cpi-feed/Rakefile
2017-05-14 13:01:54 -04:00

10 lines
142 B
Ruby

begin
require 'rubocop/rake_task'
rescue LoadError => e
warn e
end
RuboCop::RakeTask.new if defined?(RuboCop)
task default: %i[rubocop]