Reputation: 5005
How do you sort by earliest date?
I tried .sort
and I get
<td><%= effort.week_commencing.sort %></td>
// => undefined method `sort' for Mon, 12 Sep 2011:Date
The values are not in an array they are listed in a table.
Upvotes: 0
Views: 141
Reputation: 6426
You can use the sort
method only on array's.
I don't think effort.week_commencing
is returning an array in your case.
check what are you getting in effort.week_commencing.
Upvotes: 1