onesky / onesky-ruby

Ruby client for OneSky Platform API
MIT License
13 stars 29 forks source link

Remove rest-client monkey patch code #14

Closed VLMH closed 6 years ago

VLMH commented 6 years ago

rest-client 1.8 handle array as months=jan,feb,mar This is not supported from OneSky API. Thus, monkey-patched the query string building part.

With rest-client 2.0, it handles array as desired months[]=jan&months[]=feb&months[]=mar, monkey-patch is not needed and should be removed.

VLMH commented 6 years ago

15