9f23a5d3ce
Also introduced because of .ruby-version specification http://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Style/NumericPredicate
13 lines
431 B
Ruby
13 lines
431 B
Ruby
# frozen_string_literal: true
|
|
class InputOptionsPresenceValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
return true unless record.input_type =~ /radio|check/i
|
|
return true if value.present? && value.count.positive?
|
|
|
|
record.errors[attribute] << (options[:message] ||
|
|
"You must provide answer options for the selected input type.")
|
|
|
|
false
|
|
end
|
|
end
|