I have been working with a cron-like task scheduler in the past and among the very few options, we choose crono. It works because it allows us to run tasks […]
Category: Rails
Rails – Healthy Migration Habbits – a repost
We are using a gem that encrypts database table columns. So far, it is working as intended, however, we encountered several issues where a column or a model attribute is […]
Rails – Encrypting Database Columns with Key Rotation
Encryption is not an easy task. You have to manage the encryption itself, key rotation and securing the keys. In this post, I’ll describe how we managed to encrypt our […]