I'm using MongoDB with MongoId (version 2.4.11) with the following class:
class User
include Mongoid::Document
key :email
end
Whenever I User.create email: "bob@domain.tld", MongoId/MongoDB generates a primary key which becomes bob-at-domain-dot-tld
Where is that coming from?
Bonus points for providing a GitHub link!