instance method
check_validity!
Ruby on Rails 3.0.20
Since v3.0.20 Last seen in v3.2.22.5Signature
check_validity!()
No documentation comment.
Source
# File activemodel/lib/active_model/validations/format.rb, line 14
def check_validity!
unless options.include?(:with) ^ options.include?(:without) # ^ == xor, or "exclusive or"
raise ArgumentError, "Either :with or :without must be supplied (but not both)"
end
if options[:with] && !options[:with].is_a?(Regexp)
raise ArgumentError, "A regular expression must be supplied as the :with option of the configuration hash"
end
if options[:without] && !options[:without].is_a?(Regexp)
raise ArgumentError, "A regular expression must be supplied as the :without option of the configuration hash"
end
end
Defined in activemodel/lib/active_model/validations/format.rb line 14
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveModel::Validations::FormatValidator