Wyatt Kirby
Wyatt Kirby
Add a rubocop cop for enforcing ! And block semantics.
We should include a simple flag when calling `phi_model` that will exclude `id`, `created_at`, and `updated_at` from PHI wrapping. Instead of hard-coding ID, we should grab `class.primary_key` to know which...
This should be a no-op change that allows for performance improvements by preloading the `audits` association. By checking if the `audits` association is already loaded, we can avoid N+1 queries...
Calling `.revision` always executes a database query, regardless of whether the audits have been preloaded, because `audits_to` uses the `to_version` scope on the `audits` association, which always goes back to...
### Description Using the [example repo](https://github.com/dockersamples/avatars), changes to the python code do not have any effect on the running application. ### Steps To Reproduce 1. Clone the [example repository](https://github.com/dockersamples/avatars) for...
I'm running a ruby alpine docker container (`ruby:3.3-alpine3.19`). I have installed the packages `alpine-sdk`, `ruby-dev` and `gcompat`, which are usually enough to build any gem that does not have pre-built...
### Motivation In RN 0.77, they deprecated BackHandler.removeEventListener. The `Modal` component on the 4.x branch is set up to call `hideModal` when it's mounted with `visible={false}`, and because `showModal` has...
Our app loads multiple sounds and then plays them in quick succession. While it is working, there's always a small delay between clips. It would be nice to be able...