summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2021-07-01 23:54:42 -0600
committerDan Allen <dan.j.allen@gmail.com>2021-07-02 05:04:55 -0600
commit62ee6e43c564c3a91ed6997f208f691ffa43b4da (patch)
treeb1411f98dec442437551a44f2caa708ac60452c7 /tasks
parent33b37a5fd12db84cc07964913adb702046518295 (diff)
upgrade RuboCop, add new rules, and adjust code to confirm [skip ci]
Diffstat (limited to 'tasks')
-rw-r--r--tasks/rubocop.rake8
1 files changed, 5 insertions, 3 deletions
diff --git a/tasks/rubocop.rake b/tasks/rubocop.rake
index f64859b3..71ae3d74 100644
--- a/tasks/rubocop.rake
+++ b/tasks/rubocop.rake
@@ -7,8 +7,10 @@ begin
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
+ 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