Why does double splat only work with symbol keys?
I ran into something like this recently. If you’re in Rails and you have a method that takes keyword arguments and you have a strong params hash that you want to send to it, you can use symbolize_keys on the params hash and it will properly separate out the arguments, no double splat needed. Model … Read more