10 11 12
# File 'lib/mongo_doc/ext/date_time.rb', line 10 def self.bson_create(bson_hash, options = nil) DateTime.parse(*bson_hash.values_at('dt', 'sg')) end
14 15 16
# File 'lib/mongo_doc/ext/date_time.rb', line 14 def self.cast_from_string(string) DateTime.parse(string) unless string.blank? end
2 3 4 5 6 7 8
# File 'lib/mongo_doc/ext/date_time.rb', line 2 def to_bson(*args) { MongoDoc::BSON::CLASS_KEY => self.class.name, 'dt' => strftime, 'sg' => start } end