Class: Date

Inherits:
Object show all
Defined in:
lib/mongo_mapper/support.rb

Class Method Summary collapse

Class Method Details

.from_mongo(value) ⇒ Object



57
58
59
# File 'lib/mongo_mapper/support.rb', line 57

def self.from_mongo(value)
  value.to_date if value.present?
end

.to_mongo(value) ⇒ Object



46
47
48
49
50
51
52
53
54
55
# File 'lib/mongo_mapper/support.rb', line 46

def self.to_mongo(value)
  if value.nil? || value == ''
    nil
  else
    date = value.is_a?(Date) || value.is_a?(Time) ? value : Date.parse(value.to_s)
    Time.utc(date.year, date.month, date.day)
  end
rescue
  nil
end