julienbourdeau / debugbar

Powerful devtools for Ruby on Rails. Inspired by the Laravel Debugbar.
https://debugbar.dev
MIT License
487 stars 8 forks source link

fix #20 - undefined method `adapter_name` for ActiveJob:Module #24

Closed julienbourdeau closed 8 months ago

julienbourdeau commented 8 months ago

The queue_name method was directly copied from Rails but I didn't realize that ActiveJob.adapter_name was only added recently and is not available prior to Rails 7.1!

This PR reimplement the ActiveJob method on the gem.

See #20