method

normalize_arguments

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