**ArgumentError in RailsAdmin::MainController#new** wrong number of arguments (given 1, expected 0) ``` def save(**) # :nodoc: SuppressorRegistry.suppressed[self.class.name] ? true : super end ``` [https://rubyreferences.github.io/rubychanges/3.0.html#keyword-arguments-are-now-fully-separated-from-positional-arguments](https://rubyreferences.github.io/rubychanges/3.0.html#keyword-arguments-are-now-fully-separated-from-positional-arguments) --- Problem is probably connected with new way of declaring keyword arguments. ``` def old_style(name, options = {}) end def new_style(name, **options) end ```
ArgumentError in RailsAdmin::MainController#new
wrong number of arguments (given 1, expected 0)
https://rubyreferences.github.io/rubychanges/3.0.html#keyword-arguments-are-now-fully-separated-from-positional-arguments
Problem is probably connected with new way of declaring keyword arguments.