summaryrefslogtreecommitdiff
path: root/tasks/rubocop.rake
blob: f64859b35d399e697292209d508c7929229e26d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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 'Failed to load lint task.
Install required gems using: bundle --path=.bundle/gems
Then, invoke Rake using: bundle exec rake', cause: e
  end
end