1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/nodes/grouping.rb
Ernie Miller c78227d9b2 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.
2012-05-19 11:10:47 -04:00

7 lines
105 B
Ruby

module Arel
module Nodes
class Grouping < Unary
include Arel::Predications
end
end
end