aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/greater_than.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-09-10 11:47:03 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-09-10 11:47:03 -0700
commit9fdaf497cb346696ea538308b77ec07f051cd569 (patch)
tree9b9af29488f27ec631ddfc5a65ab1a1defaceb4d /lib/arel/nodes/greater_than.rb
parent6032d40c1d1c7a7681f145c30b4c26386395ba45 (diff)
downloadrails-9fdaf497cb346696ea538308b77ec07f051cd569.tar.gz
rails-9fdaf497cb346696ea538308b77ec07f051cd569.tar.bz2
rails-9fdaf497cb346696ea538308b77ec07f051cd569.zip
added a greater than node
Diffstat (limited to 'lib/arel/nodes/greater_than.rb')
-rw-r--r--lib/arel/nodes/greater_than.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/arel/nodes/greater_than.rb b/lib/arel/nodes/greater_than.rb
new file mode 100644
index 0000000000..2e03cc2e18
--- /dev/null
+++ b/lib/arel/nodes/greater_than.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class GreaterThan < Arel::Nodes::Binary
+ end
+ end
+end