Cedric

Results 6 issues of Cedric

Hello. I find the following behavior (using Hashdiff 1.0.1) somewhat unexpected: ```ruby Hashdiff.diff(%w[a b c], %w[a b d]) => [["-", "[2]", "c"], ["+", "[2]", "d"]] ``` Would not it be...

Hello. Is there a way to access the audit corresponding to the current transaction in an `after_commit` or `after_save` hook? Of course we could do the following: ```ruby class Cat...

Hello, @secteur0 and I noticed that deep-cover (1.0.0) is getting tripped up (`DeepCover is getting confused with the file`) by the following code, especially the `rescue => ex` part. (Note...

Hello. We have django app for which we have "django envs" which can be though of as Rails envs. This allows us to run the app locally against various databases...

Inline private modifier of `delegate` is necessary for the resulting method to actually be private. But rubocop complains with [Correctable] Style/AccessModifierDeclarations: private should not be inlined in method definitions. Consider...

Two changes of behavior related to enabling/disabling auditing for a specific model can observed (at least with Rails 6.1.7.4, but I could investigate with other versions if needed). See https://github.com/stripedpumpkin/rails-audited-controller-poc/blob/main/README.md...