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/window_predications.rb
2012-02-22 15:25:10 +01:00

9 lines
No EOL
118 B
Ruby

module Arel
module WindowPredications
def over(expr = nil)
Nodes::Over.new(self, expr)
end
end
end