aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/matches.rb
diff options
context:
space:
mode:
authorErnie Miller <ernie@metautonomo.us>2010-09-29 15:43:51 -0400
committerErnie Miller <ernie@metautonomo.us>2010-09-29 15:43:51 -0400
commit3a994b9949daccc2a64d08234af22fda78e49a17 (patch)
tree9beec2e12ccde5720a076f0142ff7dab2c48654a /lib/arel/nodes/matches.rb
parent261d284136567edfeb4dbfd9403ebd95e6bdae75 (diff)
downloadrails-3a994b9949daccc2a64d08234af22fda78e49a17.tar.gz
rails-3a994b9949daccc2a64d08234af22fda78e49a17.tar.bz2
rails-3a994b9949daccc2a64d08234af22fda78e49a17.zip
Add support for remaining *_any/*_all attribute methods, and add matches/does_not_match/not_in
Diffstat (limited to 'lib/arel/nodes/matches.rb')
-rw-r--r--lib/arel/nodes/matches.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/arel/nodes/matches.rb b/lib/arel/nodes/matches.rb
new file mode 100644
index 0000000000..4b9fd34ad1
--- /dev/null
+++ b/lib/arel/nodes/matches.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class Matches < Binary
+ end
+ end
+end