Methods
Constants
ERROR_MESSAGE | = | "An object with the method #include? or a proc or lambda is required, " << "and must be supplied as the :in option of the configuration hash" |
Instance Public methods
# File activemodel/lib/active_model/validations/inclusion.rb, line 16 def validate_each(record, attribute, value) delimiter = options[:in] exclusions = delimiter.respond_to?(:call) ? delimiter.call(record) : delimiter unless exclusions.send(inclusion_method(exclusions), value) record.errors.add(attribute, :inclusion, options.except(:in).merge!(:value => value)) end end