i'm wondering why mongoid is returning a String when i want to read out the created_at date? my problem is: when i want to print the date like this
<% @app.created_at.strftime("%m/%d/%y") %>
rails is raising a
undefined method `getlocal' for "Wed, 11 Jul 2012 02:39:24 -0400":String
error. so what can i do to get mongoid to return the date as Time object?
thanks in advance!
field :created_atdeclaration there? – Sergio Tulentsev Jul 11 '12 at 16:37