Grey Moore

Results 4 issues of Grey Moore

In Rails 6.1, running `rake db:structure:dump` prints a deprecation warning. The `db:migrate` task appears to invoke `db:schema:dump` instead. This change allows the cleanup to happen as expected when running migrations...

This adds support for setting the `requeue_strategy` for a job, to specify what we should do with throttled jobs. The default is `:enqueue`, which is the current behavior: re-add it...

enhancement

Background: I have a Rails app with several classes that are used in Liquid rendering like this: ```ruby class Thingy < ApplicationRecord def to_liquid LiquidDrops::Thingy.new(record: self) end end module LiquidDrops...

I recently upgraded from Grape 2.0.0 to Grape 2.1.2, and now I'm seeing an error in grape-middleware-logger when I make any request: ``` E, [2024-07-08T09:19:46.339918 #9444] ERROR -- : uninitialized...