I get an error
undefined method `strftime 'for' 2013-03-06 ': String
when trying to display the date usually (June 3, 2013 or something similar) from the line 2013-03-06 using strftime.
A line that does this in my index.html.erb and looks like this
<td><%= task.duedate.strftime("%B %e, %Y") %></td>
I'm just learning Rails, so I'm sure this is just a dumb beginner mistake, any help would be appreciated. Thanks you
Colin source
share