How can I add errors to the User model manually?
User
Is it just @user.errors << \"some text goes here\" ?
@user.errors << \"some text goes here\"
WARNING
If you just add errors in a separate method (not in a validation), then by default when you call .valid? or .save those errors will be automatically cleared. So you may want to use validation contexts instead.
.valid?
.save