Daniel Morrison
Daniel Morrison
Rails since 5.1 defaults to bigint for ID columns and we should default to the same for `auditable_id`, `associated_id` and `user_id`.
In apps that run with `--enable=frozen-string-literal` we can get a `FrozenError`. Using `String.new` instead of `''` fixes that without breaking it for anyone else. When running the specs with frozen...
@arthurnn are you open to others helping maintain this gem? My team has been using this gem heavily across multiple projects and would be happy to help. We have a...
Noting this here (without a fix, sorry) mainly so others don't fall down the trap. I was using Joint on an embedded doc (in another embedded doc) and it looked...
I was moving some stuff into Ruby that was previously using [Field Agent](https://deadmanssnitch.com/docs/field-agent). I found myself wanting a block syntax to mimic the niceties of Field Agent. This could be...
I copied the example and Actions was taking ages to start running the build (15 min before I got bored). Switching to `ubuntu-latest` got it running immediately. Hopefully this helps...
Update `Service` to properly support Rack 3. Looks like this is all we need to do. * [Rewinding the body is no longer required](https://github.com/rack/rack/blob/main/UPGRADE-GUIDE.md#rackinput-is-no-longer-required-to-be-rewindable). Only `rewind` if it is rewindable....