Todd
Todd
I looked into this... it could be an interpreter bug... rework the progress handler to not use the literal "return" keyword and it won't crash... e.g. a simple example of...
Curl.put(url) do|http| http.put_data = File.read(file) end Should work.?
Hi Rushi, I would start by looking into the libcurl documentation here: http://curl.haxx.se/libcurl/c/curl_easy_setopt.html Also see if you can find some examples in the C API. it should translate to the...
I believe, in this case you'll have to use the lower level API see the Multi Interface (Advanced): section.
I think you want to use Curl.delete(url)
I'll have to check to see how libcurl would handle that directly... But normally, you shouldn't set the Content-Length and I'm wondering if would make more sense to have the...
My only reason for not moving on this is who else do we break if we raise...
what do you get when you try ``` ruby Curl.put(url, '{}') do|curl| curl.http_auth_types = :gssnegaotiate curl.username = ':' curl.headers['Content-Type'] = 'application/json' end ``` Same thing?
I'm not sure I'll have time to work on that in the near future, if you or someone wants to submit a pull request, I'll definitely merge it in for...
Good question, you might look in curb/ext/curb_errors.c I don't know for sure but that might be a good place to start... On Fri, Oct 12, 2012 at 4:20 AM, Jérémy...