curb
curb copied to clipboard
Is there a way to set the capath?
using the cURL command line tool I can set the capath for my request using the flag: --capath
is there a way to set this using the ruby curb gem?
Thanks
I believe you can use set? Curl::CURLOPT_CAPATH
e.g.
easy.set(Curl::CURLOPT_CAPATH, "path.to.your.bundle") # ? try that and let us know