Shopify / active_shipping

ActiveShipping is a simple shipping abstraction library extracted from Shopify
http://shopify.github.io/active_shipping
MIT License
812 stars 546 forks source link

Replace options with keyword args #430

Open kmcphillips opened 7 years ago

kmcphillips commented 7 years ago

Since we'll be dropping lower version support, we can use keyword args everywhere. #426

So many of the method signatures are like (a, b, c, d, e, options={}) and those should be replaced with documented keyword arguments.

kmcphillips commented 7 years ago

In any case where we still use option, in the case that we do, we need to symbolize_keys! because we are inconsistent about that now.