mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-12-04 00:01:22 -05:00
Changes all arrays from classic Rack encoding: ``` sh arr[]=...&arr[]=...&arr[]=... ``` To integer-indexed encoding: ``` sh arr[0]=...&arr[1]=...&arr[2]=... ``` We think that this should be tractable now that we've fully converted all endpoints over to the new AbstractAPIMethod infrastructure on the backend (although we should do a little more testing to make sure that all endpoints still work). As part of the conversion, we also remove any places that we were "spot encoding" to get required integer-indexed syntax. This should now all be built in.