Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
How is created_at being set? – Frederick Cheung Jul 11 '12 at 7:26
created_at is being set automatically by MongoID. the console tells me, that the created_at class is => ActiveSupport::TimeWithZone – Tronic Jul 11 '12 at 7:42
Show your model definition. Do you have field :created_at declaration there? – Sergio Tulentsev Jul 11 '12 at 16:37

1 Answer

Does your model contain a

include Mongoid::Timestamps

If it is, someObject.created_at.class should return Time

See http://mongoid.org/en/mongoid/docs/extras.html#timestamps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.