Sha256: aa6b9810920ab2b3ab784369d98aaa370be50d1d23d0484332b2bfccf44695a4
Contents?: true
Size: 375 Bytes
Versions: 71
Compression:
Stored size: 375 Bytes
Contents
# encoding: UTF-8 module MongoMapper module Extensions module Binary def to_mongo(value) if value.is_a?(::BSON::Binary) value else value.nil? ? nil : ::BSON::Binary.new(value) end end def from_mongo(value) value end end end end class Binary extend MongoMapper::Extensions::Binary end
Version data entries
71 entries across 71 versions & 9 rubygems