You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run Rspec on my project I have that warning:
ruby/gems/2.7.0/gems/arbre-1.4.0/lib/arbre/element.rb:182: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
I guess the fix is to change
helpers.send(name, *args, &block)
to
helpers.send(name, *args, **kwargs, &block))
ActiveAdmin 2.9.0
Rails 6.0.3
fonji, MmKolodziej, darkhelmet, denys-husiev-perfectial, jcoyne and 1 more