Module: BSON::Date
- Defined in:
- lib/bson/date.rb
Overview
Injects behaviour for encoding date values to raw bytes as specified by the BSON spec for time.
Instance Method Summary collapse
-
#bson_type ⇒ Object
Get the BSON type for the date.
-
#to_bson(encoded = ''.force_encoding(BINARY)) ⇒ String
Get the date as encoded BSON.
Instance Method Details
#bson_type ⇒ Object
Get the BSON type for the date.
As the date is converted to a time, this returns the BSON type for time.
44 45 46 |
# File 'lib/bson/date.rb', line 44 def bson_type ::Time::BSON_TYPE end |