In recent version of CURB , CTRL + C or SIGINT are being ignored. I
tried the following script and still being ignored..
What changed as it used to work before? is there a workaround or a new
way to do that with curb?
require 'rubygems'
require 'curb'
trap('SIGINT'){exit}
url = "
http://google.com"
postdatas = []
postdatas << "q=word"
c = Curl::Easy.new(url)
c.http_post( url, postdatas.join("&"))
p c.body_str
thanks