Method: Date#to_bson

Defined in:
lib/mongodoc/ext/date.rb

#to_bson(*args) ⇒ Object



2
3
4
5
6
7
8
# File 'lib/mongodoc/ext/date.rb', line 2

def to_bson(*args)
  {
    MongoDoc::BSON::CLASS_KEY => self.class.name,
    'dt' => strftime,
    'sg' => start
  }
end