Displaying 1 result from an estimated 1 matches for "reportday".
Did you mean:
reportdate
2006 May 23
2
Ordinalizing a date
I''m trying to use the ordinalize() method to ordinalize a day. Here''s
how far I''ve gotten:
@reportday = Time.now.at_beginning_of_week.strftime("%d").to_i
@ordinalized_reportday = "#{@reportday}".ordinalize
I was thinking it wasn''t working because the date is being returned as a
string, however I added the .to_i and still it returns an error.
The error I''m ge...