summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.rubocop_todo.yml5
-rw-r--r--app/models/attachment.rb3
2 files changed, 2 insertions, 6 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index a782c472c..378e5dd08 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -1438,11 +1438,6 @@ Style/VariableInterpolation:
- 'lib/redmine/configuration.rb'
# Cop supports --auto-correct.
-Style/WhileUntilModifier:
- Exclude:
- - 'app/models/attachment.rb'
-
-# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, MinSize, WordRegex.
# SupportedStyles: percent, brackets
Style/WordArray:
diff --git a/app/models/attachment.rb b/app/models/attachment.rb
index afba75e60..8304d4dea 100644
--- a/app/models/attachment.rb
+++ b/app/models/attachment.rb
@@ -506,7 +506,8 @@ class Attachment < ActiveRecord::Base
# keep the extension if any
ascii << $1 if filename =~ %r{(\.[a-zA-Z0-9]+)$}
end
- while File.exist?(File.join(storage_path, directory.to_s, "#{timestamp}_#{ascii}"))
+ while File.exist?(File.join(storage_path, directory.to_s,
+ "#{timestamp}_#{ascii}"))
timestamp.succ!
end
"#{timestamp}_#{ascii}"