aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/greater_than_or_equal.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-09-10 11:39:50 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-09-10 11:39:50 -0700
commit6032d40c1d1c7a7681f145c30b4c26386395ba45 (patch)
treede49d1734e3d3088304b8c092ea1cbd72d5e65fc /lib/arel/nodes/greater_than_or_equal.rb
parente7648f26921d66f1375645808a5266d8e0e3edcf (diff)
downloadrails-6032d40c1d1c7a7681f145c30b4c26386395ba45.tar.gz
rails-6032d40c1d1c7a7681f145c30b4c26386395ba45.tar.bz2
rails-6032d40c1d1c7a7681f145c30b4c26386395ba45.zip
added greater than or equal to node
Diffstat (limited to 'lib/arel/nodes/greater_than_or_equal.rb')
-rw-r--r--lib/arel/nodes/greater_than_or_equal.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/arel/nodes/greater_than_or_equal.rb b/lib/arel/nodes/greater_than_or_equal.rb
new file mode 100644
index 0000000000..a8cfaab04e
--- /dev/null
+++ b/lib/arel/nodes/greater_than_or_equal.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class GreaterThanOrEqual < Arel::Nodes::Binary
+ end
+ end
+end