blob: 71ae3d74f5d7a2756391e4922e67e2ff47e22c3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# frozen_string_literal: true
begin
require 'rubocop/rake_task'
RuboCop::RakeTask.new :lint do |t|
t.patterns = Dir['lib/**/*.rb'] - ['lib/asciidoctor/pdf/formatted_text/parser.rb'] + %w(Rakefile Gemfile tasks/*.rake spec/**/*.rb)
end
rescue LoadError => e
task :lint do
raise <<~'EOS', cause: e
Failed to load lint task.
Install required gems using: bundle --path=.bundle/gems
Then, invoke Rake using: bundle exec rake'
EOS
end
end
|