Any idea on how to create and save a new User object with devise from the ruby console?
When I tried to save it, I\'m getting always false. I guess I\'m missing some
None of the above answers worked for me.
This is what I did:
User.create(email: "a@a.com", password: "asdasd", password_confirmation: "asdasd")
Keep in mind that the password must be bigger than 6 characters.