aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/or.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-08-16 17:26:12 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-08-16 17:26:12 -0700
commitae547dc139179720a814ae21f43f3e0aaad97c5c (patch)
tree8e3b12ee400c200067676511f976e36486f74fba /lib/arel/nodes/or.rb
parent66243e491d06edf0bff21000adad2837e67c21e2 (diff)
downloadrails-ae547dc139179720a814ae21f43f3e0aaad97c5c.tar.gz
rails-ae547dc139179720a814ae21f43f3e0aaad97c5c.tar.bz2
rails-ae547dc139179720a814ae21f43f3e0aaad97c5c.zip
OR nodes are somewhat working
Diffstat (limited to 'lib/arel/nodes/or.rb')
-rw-r--r--lib/arel/nodes/or.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/arel/nodes/or.rb b/lib/arel/nodes/or.rb
new file mode 100644
index 0000000000..bdf7f6d9b3
--- /dev/null
+++ b/lib/arel/nodes/or.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class Or < Arel::Nodes::Binary
+ end
+ end
+end