Last active
July 29, 2017 19:39
-
-
Save Epigene/d5a3155755cd16d6f71b22d59913a16f to your computer and use it in GitHub Desktop.
The ugly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
last_posts = [] | |
User.all.each |user| | |
last_posts << user.posts.order(created_at: :asc).last | |
end | |
# oops, some users have no posts and the array has nils | |
last_posts = last_posts.compact | |
# now to have them in correct order | |
last_posts = last_posts.sort{ |x, y| y.created_at <=> x.created_at } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment