User モデルの電子メール属性を暗号化しようとしています。email
Deviseによって使用されます。
class User < ActiveRecord::Base
end
devise :database_authenticatable, :registerable, :confirmable,
:recoverable, :rememberable, :trackable
暗号化には、gem を使用しますattr_encrypted
: https://github.com/attr-encrypted/attr_encrypted
この gem を使用したいのですが、接続していません。実際、私はこれに関連する多くの問題を受け取っています。
email
Devisが使用されたRailsプロジェクトで、理想的にはを使用して暗号化された属性を持っている人はいますattr_encrypted
か? それに対するあなたのアプローチは何でしたか?