From c78227d9b219933f54cecefb99c72bb231fbb8f2 Mon Sep 17 00:00:00 2001 From: Ernie Miller Date: Sat, 19 May 2012 11:10:47 -0400 Subject: Include Predications in Grouping Also, removed unused ordering.rb file, since it is identical to the one being created in unary.rb already, and isn't required anywhere. --- lib/arel/nodes/grouping.rb | 7 +++++++ lib/arel/nodes/ordering.rb | 6 ------ lib/arel/nodes/unary.rb | 1 - 3 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 lib/arel/nodes/grouping.rb delete mode 100644 lib/arel/nodes/ordering.rb (limited to 'lib/arel/nodes') diff --git a/lib/arel/nodes/grouping.rb b/lib/arel/nodes/grouping.rb new file mode 100644 index 0000000000..e7f4bd9cd5 --- /dev/null +++ b/lib/arel/nodes/grouping.rb @@ -0,0 +1,7 @@ +module Arel + module Nodes + class Grouping < Unary + include Arel::Predications + end + end +end diff --git a/lib/arel/nodes/ordering.rb b/lib/arel/nodes/ordering.rb deleted file mode 100644 index efb4d18ae4..0000000000 --- a/lib/arel/nodes/ordering.rb +++ /dev/null @@ -1,6 +0,0 @@ -module Arel - module Nodes - class Ordering < Unary - end - end -end diff --git a/lib/arel/nodes/unary.rb b/lib/arel/nodes/unary.rb index 4688fff623..7828cceae5 100644 --- a/lib/arel/nodes/unary.rb +++ b/lib/arel/nodes/unary.rb @@ -12,7 +12,6 @@ module Arel %w{ Bin Group - Grouping Having Limit Not -- cgit v1.2.3