How can I sort an array returned by an ActiveRecord query by a created_at date column?
created_at
This occurs once the query has been executed.
Please don
Ruby includes support for sorting out of the box.
sorted = @records.sort_by &:created_at
However, this doesn't appear to have much to do with display and probably belongs in the controller.