Method: Arel::Predications#does_not_match_regexp

Defined in:
activerecord/lib/arel/predications.rb

#does_not_match_regexp(other, case_sensitive = true) ⇒ Object



151
152
153
# File 'activerecord/lib/arel/predications.rb', line 151

def does_not_match_regexp(other, case_sensitive = true)
  Nodes::NotRegexp.new self, quoted_node(other), case_sensitive
end