Class: Mongoid::Fields::Internal::Date
- Includes:
- Timekeeping, Serializable
- Defined in:
- lib/mongoid/fields/internal/date.rb
Overview
Defines the behaviour for date fields.
Instance Attribute Summary
Attributes included from Serializable
#default_val, #label, #localize, #name, #options
Instance Method Summary collapse
-
#deserialize(object) ⇒ Date
Deserialize this field from the type stored in MongoDB to the type defined on the model.
Methods included from Timekeeping
#cast_on_read?, #selection, #serialize, #strip_milliseconds
Methods included from Serializable
#constraint, #eval_default, #foreign_key?, #localized?, #metadata, #object_id_field?, #resizable?, #selection, #serialize, #type, #versioned?
Instance Method Details
#deserialize(object) ⇒ Date
Deserialize this field from the type stored in MongoDB to the type defined on the model.
22 23 24 25 26 27 28 29 |
# File 'lib/mongoid/fields/internal/date.rb', line 22 def deserialize(object) return nil if object.blank? if Mongoid::Config.use_utc? object.to_date else ::Date.new(object.year, object.month, object.day) end end |