Class: RespondToValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/solid/validators/respond_to_validator.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(model, attribute, value) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/solid/validators/respond_to_validator.rb', line 6

def validate_each(model, attribute, value)
  with_option = Array.wrap(options[:with] || options[:in])

  return if with_option.all? { value.respond_to?(_1) }

  message = "does not respond to #{with_option.map(&:inspect).join(" & ")}"

  Solid::Validators.add_error(model, attribute, message, options)
end