Reputation: 2319
I have an array of Comment objects retrieved from Mongoid. How do I sort an array by created_at date in descending order.
I have tried the code below:
all_comments = []
all_comments.concat(question_comments).concat(answer_comments).sort_by { |x| -x[:created_at] }
I get the following error:
undefined method `-@' for 2013-08-17 10:34:46 UTC:Time
Upvotes: 2
Views: 1868