diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-12-16 07:42:17 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-12-16 07:42:17 -0800 |
commit | 899e8428c50c586e6c8d4884b542ac9fdf01e95f (patch) | |
tree | cea78b06495af32c84f7fa34f4cc104b6cb3c1bf /lib/arel/predications.rb | |
parent | 3c429c5d86e9e2201c2a35d934ca6a8911c18e69 (diff) | |
parent | 725cf0502eb279c728bd93320cc5e22134228ff1 (diff) | |
download | rails-899e8428c50c586e6c8d4884b542ac9fdf01e95f.tar.gz rails-899e8428c50c586e6c8d4884b542ac9fdf01e95f.tar.bz2 rails-899e8428c50c586e6c8d4884b542ac9fdf01e95f.zip |
Merge pull request #403 from kbrock/regexp
Case insensitivite match/regular expressions
Diffstat (limited to 'lib/arel/predications.rb')
-rw-r--r-- | lib/arel/predications.rb | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/lib/arel/predications.rb b/lib/arel/predications.rb index b05fc6f99a..1d2b0de235 100644 --- a/lib/arel/predications.rb +++ b/lib/arel/predications.rb @@ -118,20 +118,28 @@ Passing a range to `#not_in` is deprecated. Call `#not_between`, instead. grouping_all :not_in, others end - def matches other, escape = nil - Nodes::Matches.new self, quoted_node(other), escape + def matches other, escape = nil, case_sensitive = false + Nodes::Matches.new self, quoted_node(other), escape, case_sensitive end - def matches_any others, escape = nil - grouping_any :matches, others, escape + def matches_regexp other, case_sensitive = true + Nodes::Regexp.new self, quoted_node(other), case_sensitive end - def matches_all others, escape = nil - grouping_all :matches, others, escape + def matches_any others, escape = nil, case_sensitive = false + grouping_any :matches, others, escape, case_sensitive end - def does_not_match other, escape = nil - Nodes::DoesNotMatch.new self, quoted_node(other), escape + def matches_all others, escape = nil, case_sensitive = false + grouping_all :matches, others, escape, case_sensitive + end + + def does_not_match other, escape = nil, case_sensitive = false + Nodes::DoesNotMatch.new self, quoted_node(other), escape, case_sensitive + end + + def does_not_match_regexp other, case_sensitive = true + Nodes::NotRegexp.new self, quoted_node(other), case_sensitive end def does_not_match_any others, escape = nil |