1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00

code cleanup: rubocop: fix Style/WhileUntilModifier in app/models/attachment.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18783 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-10-19 13:34:16 +00:00
parent f2b274476a
commit c95bead933
2 changed files with 2 additions and 6 deletions

View File

@ -1437,11 +1437,6 @@ Style/VariableInterpolation:
Exclude:
- '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

View File

@ -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}"