Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/file_size_validator.rb')
-rw-r--r--lib/file_size_validator.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/file_size_validator.rb b/lib/file_size_validator.rb
index 71908d2130f..e9868732172 100644
--- a/lib/file_size_validator.rb
+++ b/lib/file_size_validator.rb
@@ -11,7 +11,8 @@ class FileSizeValidator < ActiveModel::EachValidator
if range = (options.delete(:in) || options.delete(:within))
raise ArgumentError, ":in and :within must be a Range" unless range.is_a?(Range)
- options[:minimum], options[:maximum] = range.begin, range.end
+ options[:minimum] = range.begin
+ options[:maximum] = range.end
options[:maximum] -= 1 if range.exclude_end?
end