Module: Mongoid::Extensions::DateTime::ClassMethods
- Defined in:
- lib/mongoid/extensions/date_time.rb
Instance Method Summary collapse
-
#demongoize(object) ⇒ DateTime
Convert the object from its mongo friendly ruby type to this type.
-
#mongoize(object) ⇒ Time
Turn the object from the ruby type we deal with to a Mongo friendly type.
Instance Method Details
#demongoize(object) ⇒ DateTime
Convert the object from its mongo friendly ruby type to this type.
49 50 51 |
# File 'lib/mongoid/extensions/date_time.rb', line 49 def demongoize(object) ::Time.demongoize(object).try(:to_datetime) end |
#mongoize(object) ⇒ Time
Turn the object from the ruby type we deal with to a Mongo friendly type.
64 65 66 |
# File 'lib/mongoid/extensions/date_time.rb', line 64 def mongoize(object) ::Time.mongoize(object) end |