Flowdock
method

check_validity!

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Clusivity
check_validity!() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activemodel/lib/active_model/validations/clusivity.rb, line 11
      def check_validity!
        unless delimiter.respond_to?(:include?) || delimiter.respond_to?(:call) || delimiter.respond_to?(:to_sym)
          raise ArgumentError, ERROR_MESSAGE
        end
      end
Register or log in to add new notes.