Hello,
I am using version 1.2.1 of attr_encrypted gem. my rails version is 3.2.21 . Below is my model code
class Device < ActiveRecordBase
attr_encrypted :private_key, :key => proc {|device| device.dsn }
end
Sometimes i am getting null entry in database for column encrypted_private_key. I am not able to reproduced this issue as it is an intermittent issue.
Does anybody face this issue ?