platanus / activeadmin_addons

Extends ActiveAdmin to enable a set of great optional UX improving add-ons
MIT License
763 stars 288 forks source link

Pin active_material to earlier version #501

Closed alexeyschepin closed 2 months ago

alexeyschepin commented 3 months ago

Motivation / Background

v1 version of activeadmin_addons has a dependency on active_material gem. active_material gem had recently a new release that relies on ruby 3.1 built-in methods without setting it in required_ruby_version. That leads the app running on ruby 3.0 to crash.

Detail

It can be fixed if a dependency on active_material had more specific range like (~> 1.5) or (~> 1.5.2)

Additional information

I've also sent a PR to active_material https://github.com/dkniffin/active_material/pull/100

Checklist

Before submitting the PR make sure the following are checked:

rjherrera commented 2 months ago

hey, thanks for the PR, looks good to me