Module: Mongoid::Extensions::DateTime
- Defined in:
- lib/mongoid/extensions/date_time.rb
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#__mongoize_time__ ⇒ Time | ActiveSupport::TimeWithZone
Mongoize the date time into a time.
-
#mongoize ⇒ Time
Turn the object from the ruby type we deal with to a Mongo friendly type.
Instance Method Details
#__mongoize_time__ ⇒ Time | ActiveSupport::TimeWithZone
Mongoize the date time into a time.
13 14 15 16 17 18 19 20 |
# File 'lib/mongoid/extensions/date_time.rb', line 13 def __mongoize_time__ if Mongoid.use_activesupport_time_zone? in_time_zone(::Time.zone) else time = to_time time.respond_to?(:getlocal) ? time.getlocal : time end end |
#mongoize ⇒ Time
Turn the object from the ruby type we deal with to a Mongo friendly type.
29 30 31 |
# File 'lib/mongoid/extensions/date_time.rb', line 29 def mongoize ::DateTime.mongoize(self) end |