10 lines
311 B
Ruby
10 lines
311 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LinesValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
return if value.blank?
|
|
|
|
record.errors.add(attribute, :too_many_lines, limit: options[:maximum]) if options[:maximum].present? && value.split.size > options[:maximum]
|
|
end
|
|
end
|