First of all, the method and action parameters are swapped, but since they are swapped consistently, it does not cause any harm.
But secondly, I don't think I can really untangle the compatibility matrix between all rails and ruby version. There should be possibly used everywhere parameters such as *args, **kwargs, but I'm not sure how to convert the current code :confused:
Test suite fails running against Ruby 3.0. There is very likely needed PR #698, but even then there are errors such as:
It seems the crux is in these two methods: https://github.com/Apipie/apipie-rails/blob/cdff4ec654ee70dd222c7d75f64e20b167b44fce/spec/spec_helper.rb#L15-L33 introduced in 8fb9ecb8d078ea99bcdb054b5997955ccd33e08b.
First of all, the
method
andaction
parameters are swapped, but since they are swapped consistently, it does not cause any harm.But secondly, I don't think I can really untangle the compatibility matrix between all rails and ruby version. There should be possibly used everywhere parameters such as
*args, **kwargs
, but I'm not sure how to convert the current code :confused: