diaspora/lib/mongo_mapper/bson_id.rb

10 lines
111 B
Ruby

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