summaryrefslogtreecommitdiff
path: root/tasks/rubocop.rake
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/rubocop.rake')
-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