アプリケーションにDevise gemを使用しています。コードを使用してユーザーを作成したいのですが、データベース テーブル「users」ではパスワードが暗号化されています。だから私はそれを直接保存できないことを願っています
new_user = User.new
new_user.email = "xyz@xys.com"
new_user.password = "1sdf" - i cannot use this becs its actually : encrypted_password
new_user.save
これは可能ですか?