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
If you want to avoid sending confirmation emails, the best choice is:
u = User.new({ email: 'demo@greenant.com.br', password: '12feijaocomarroz', password_confirmation: '12feijaocomarroz' }) u.confirm u.save
So if you're using a fake email or have no internet connection, that'll avoid errors.