method
normalize_arguments
v7.1.3.4 -
Show latest stable
- Class:
ActiveModel::Errors
normalize_arguments(attribute, type, **options)private
No documentation available.
# File activemodel/lib/active_model/errors.rb, line 490
def normalize_arguments(attribute, type, **options)
# Evaluate proc first
if type.respond_to?(:call)
type = type.call(@base, options)
end
[attribute.to_sym, type, options]
end