toland / patron

Ruby HTTP client based on libcurl
http://toland.github.com/patron/
MIT License
541 stars 74 forks source link

Update Homebrew install procedure #168

Closed CHTJonas closed 5 years ago

CHTJonas commented 5 years ago

Homebrew have removed options from the install process, so curl linked to OpenSSL is now a separate formula.

CHTJonas commented 5 years ago

Also FYI on the latest macOS with Homebrew I had to bodge the the command line install a bit because it wasn't linking to OpenSSL properly. I think this works:

export PATH="/usr/local/opt/curl-openssl/bin:$PATH"
gem install patron -- --with-curl-lib=/usr/local/opt/openssl/lib
toland commented 5 years ago

Thanks.