Iam having some doubts regarding sorting in rails based on date.
I have two models. Post and message.
Post has_many messages.
Message belongs_to post.
Message has a field called publish_on.
So i want to sort all posts based on publish_on date in the following
order.
Let us assume that the current date is 10th November and there are 6
posts with publish dates as 8,9,10,11,12 and 13 respectively so the
sortng of the posts will be as follows,
Post to be published on 10th November
Post to be published on 11th November
Post to be published on 12th November
Post to be published on 13th November
Post to be published on 9th November
Post to be published on 8th November
Thanks,
P.Angel
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.