curb icon indicating copy to clipboard operation
curb copied to clipboard

Is there a way to set the capath?

Open ghost opened this issue 11 years ago • 1 comments

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

ghost avatar Jun 02 '14 16:06 ghost

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

taf2 avatar Jul 22 '14 13:07 taf2