diaspora/lib/mongo_mapper/bson_id.rb
2010-09-07 16:47:53 -07:00

10 lines
111 B
Ruby

class String
def to_id
BSON::ObjectId self
end
end
class BSON::ObjectId
def to_id
self
end
end