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

9 lines
118 B
Ruby
Raw Normal View History

2012-02-22 09:25:10 -05:00
module Arel
module WindowPredications
def over(expr = nil)
Nodes::Over.new(self, expr)
end
end
end