summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2025-04-04 14:50:19 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2025-04-04 14:50:19 +0000
commit40d51e1a1a42ce71ea7c264337408f81ad3ca004 (patch)
tree2bd570dcf52a7f001f624c4a8b9b78c5eb685e3c
parent2f99823b0e1e8bbb597fd95a83ac16b1ae4159cc (diff)
downloadredmine-40d51e1a1a42ce71ea7c264337408f81ad3ca004.tar.gz
redmine-40d51e1a1a42ce71ea7c264337408f81ad3ca004.zip
Fix rubocop offence "Layout/LineLength: Line is too long" (#42145, #42514).
Patch by Katsuya HIDAKA (user:hidakatsuya). git-svn-id: https://svn.redmine.org/redmine/trunk@23598 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--lib/redmine/helpers/gantt.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb
index 76490f286..bd784609b 100644
--- a/lib/redmine/helpers/gantt.rb
+++ b/lib/redmine/helpers/gantt.rb
@@ -400,7 +400,9 @@ module Redmine
MiniMagick.cli_path = File.dirname(Redmine::Configuration['imagemagick_convert_command'])
else
Rails.logger.warn(
- 'imagemagick_convert_command option is ignored because MiniMagick has removed the option to define a custom path for the binary. Please ensure the convert binary is available in your PATH.'
+ 'imagemagick_convert_command option is ignored ' \
+ 'because MiniMagick has removed the option to define a custom path for the binary. ' \
+ 'Please ensure the convert binary is available in your PATH.'
)
end
end