cpi-feed/Rakefile

10 lines
142 B
Ruby
Raw Normal View History

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]