Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this loop:

<% for post in posts.order_by([:created_at, :desc]).limit(6) %>
  post.name
<% end %>

This works fine, but I want now get the name for each post, with random order and limit 6.

I would like how works with for and each block like:

posts.each do |post|
 post.name
end
share|improve this question
What are you asking? How to randomize the order? Also are you trying to print this out or get it into an Array or what? – Batkins Feb 2 '12 at 19:04

2 Answers

up vote 2 down vote accepted
posts.limit(6).shuffle.each do |post|
  post.name
end
share|improve this answer
It does works fine :D Thanks. – hyperrjas Feb 2 '12 at 19:26

I'm not entirely certain what you're asking but it sounds to me like you could do something like this:

<% posts.limit(6).shuffle.each do |post| %>
  <%= post.name %>
  <br>
<% end %>

See the docs for the Array class's shuffle method for more details on usage for randomization.

share|improve this answer
It does works fine :D Thanks. – hyperrjas Feb 2 '12 at 19:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.