Module: Mongoid::Extensions::TimeWithZone::ClassMethods
- Defined in:
- build/mongoid-7.3/lib/mongoid/extensions/time_with_zone.rb
Instance Method Summary collapse
-
#demongoize(object) ⇒ TimeWithZone
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) ⇒ TimeWithZone
Convert the object from its mongo friendly ruby type to this type.
45 46 47 48 |
# File 'build/mongoid-7.3/lib/mongoid/extensions/time_with_zone.rb', line 45 def demongoize(object) return nil if object.blank? ::Time.demongoize(object).in_time_zone end |
#mongoize(object) ⇒ Time
Turn the object from the ruby type we deal with to a Mongo friendly type.
61 62 63 |
# File 'build/mongoid-7.3/lib/mongoid/extensions/time_with_zone.rb', line 61 def mongoize(object) ::Time.mongoize(object) end |