David Hajčiar
David Hajčiar
When upgrading rails project with 200+ models from annotate to this gem (thanks for creating and maintaining it!), we noticed that annotation became a lot slower. We managed to pinpoint...
Simple way to reproduce it is with following test in this repository: ``` class User < ActiveRecord::Base enumerize :status, :in => { active: 1, blocked: 2 }, scope: true end...
Hello. We were debugging a memory leak that appeared in our rails app after we started using `with_level` method to adjust visibility of some logs. How to reproduce: ```ruby require...