diaspora/lib/mongo_mapper/bson_id.rb
2010-08-28 13:31:07 -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