Class: Binary
Class Method Summary collapse
Class Method Details
.from_mongo(value) ⇒ Object
22 23 24 |
# File 'lib/mongo_mapper/support.rb', line 22 def self.from_mongo(value) value end |
.to_mongo(value) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/mongo_mapper/support.rb', line 14 def self.to_mongo(value) if value.is_a?(ByteBuffer) value else value.nil? ? nil : ByteBuffer.new(value) end end |