Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

order_by in block each rails 3.1

I have a loop for with order_by for :created_at and :desc

<% for comment in post.comments.order_by([:created_at, :desc]) %>
<% end %>

How can I doing the order_by([:created_at, :desc]) in block with each, e.j:

<% post.comments.each do |comment|%>
<% end %>

Edited

The code that working fine for me its:

post.comments.order([:created_at, :desc])[0,5].each do |comment|

with the [0,5] limit the result to interval.

like image 815
hyperrjas Avatar asked Dec 30 '11 13:12

hyperrjas


1 Answers

order method is what you're looking for:

<% post.comments.order("created_at desc").each do |comment|%>
<% end %>
like image 80
alony Avatar answered Nov 15 '22 19:11

alony