eonu / arx

A Ruby interface for querying academic papers on the arXiv search API.
https://arxiv.org/help/api
MIT License
31 stars 1 forks source link

Use URI.open instead of Kernel.open (after 2.7) #82

Closed eonu closed 3 years ago

eonu commented 3 years ago

After Ruby 2.7, using Kernel.open was deprecated and raises a warning, suggesting that URI.open be used explicitly.

eonu commented 3 years ago

Implemented in #86.