This is a interesting article about how to make http request in #ruby https://norvilis.com/stop-using-net-http-a-guide-to-modern-ruby-requests/
Stop Using Net::HTTP: A Guide to Modern Ruby Requests

Ruby has a standard library for making web requests called Net::HTTP. It is famously terrible.

DevBlog by Zil Norvilis
@codeDude `http.rb` is my go-to. It's fast and reliable. I don't like the `faraday` API at all, but will use it when forced to.
@ingemar I use to use Faraday only in Rails projects, but http in ruby ones.
@codeDude I would probably use Faraday if I were writing a gem.
@codeDude I think it's polite to enable people to choose their backend.